#Installing packages#
#install.packages("parallel")

Add a new chunk by clicking the Insert Chunk button on the toolbar or by pressing Ctrl+Alt+I.

library(dplyr)

Attache Paket: ‘dplyr’

Das folgende Objekt ist maskiert ‘package:ggplot2’:

    vars

Das folgende Objekt ist maskiert ‘package:MASS’:

    select

Die folgenden Objekte sind maskiert von ‘package:stats’:

    filter, lag

Die folgenden Objekte sind maskiert von ‘package:base’:

    intersect, setdiff, setequal, union
#Import auxiliary functions
source("auxiliary_functions.R", local=FALSE)
set.seed(456)

When you save the notebook, an HTML file containing the code and output will be saved alongside it (click the Preview button or press Ctrl+Shift+K to preview the HTML file).

The preview shows you a rendered HTML copy of the contents of the editor. Consequently, unlike Knit, Preview does not run any R code chunks. Instead, the output of the chunk when it was last run in the editor is displayed.

beta = beta_1(p=100,s=5)
df <- simulate(n=100, p=100, rho=0.5, beta=beta, SNR = 1)$df
x <- data.matrix(df[,-1]) #explan var, glmnet can't use dataframe
y <- data.matrix(df[,1]) #dependent var, glmnet can't use dataframe

cv.out = cv.glmnet(x, y, alpha = 1, intercept=FALSE) # Fit lasso model on training data
plot(cv.out) # Draw plot of training MSE as a function of lambda

lam = cv.out$lambda.1se # Select more conservative lambda for variable selection


lasso_coef = predict(cv.out, type = "coefficients", s = lam) # Display coefficients using lambda chosen by CV

beta = beta_2(p=50,s=5)
df <- simulate(n=100, p=50, rho=0.5, beta=beta, SNR = 1)$df
result = RF_VSURF(data=df, beta=beta)
Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                                                                                                                                  
  |                                                                                                                                                                                                            |   0%
  |                                                                                                                                                                                                                  
  |==========================                                                                                                                                                                                  |  12%
  |                                                                                                                                                                                                                  
  |===================================================                                                                                                                                                         |  25%
  |                                                                                                                                                                                                                  
  |============================================================================                                                                                                                                |  38%
  |                                                                                                                                                                                                                  
  |======================================================================================================                                                                                                      |  50%
  |                                                                                                                                                                                                                  
  |================================================================================================================================                                                                            |  62%
  |                                                                                                                                                                                                                  
  |=========================================================================================================================================================                                                   |  75%
  |                                                                                                                                                                                                                  
  |==================================================================================================================================================================================                          |  88%
  |                                                                                                                                                                                                                  
  |============================================================================================================================================================================================================| 100%
RF_VSURF <- function(data, #data frame - dependent variable first
                     beta #true coefficients
){
  #--------------------------
  # Uses VSURF prediction under parallelization and
  # returns number of correctly identified  significant variables.
  # Mytree and ntree are set to default
  # ------------------------- 
  x <- data.matrix(data[,-1]) #explan var, glmnet can't use dataframe
  y <- data.matrix(data[,1]) #dependent var, glmnet can't use dataframe
  
  defaultW <- getOption("warn")  #Turn off warning messages
  options(warn = -1) 
  

  #Variable Selection using Random Forest
  model.vsurf <- VSURF(x=x, y=y, parallel = TRUE , ncores= 4)
  
  options(warn = defaultW) #re-enable warning messages

  #---------------------
  # Retention Frequency
  #---------------------
  #Create boolian vector of selected coefficients
  loc = model.vsurf$varselect.pred # location of significant coefficients
  estim_var = rep(0, length(beta)) #create zero vector of correct length
  estim_var[loc] = 1 #populate zero vector
  
  retention = var_retention(estim_var, beta) #counts only significant variables
  identification = var_identification(estim_var, beta) #counts all vars

  #---------------------
  # Number Nonzero elements
  #--------------------- 
  nonzero = var_nonzero(estim_var, beta) #count nonzero vars
  
  #---------------------
  # OOB error
  #---------------------
  OOB_error = min(model.vsurf$err.pred) # VSURF returns a vector, final element is (minimal) OOB error and includes all !prediction! variables
  
  result = list("retention" = retention, "identification" = identification, "OOB_error" = OOB_error, "nonzero" = nonzero)
  
  return(result)
}
  
cv.lasso_2 <- function(data, #data frame - dependent variable first
                     beta # true coefficients
){
  #--------------------------
  # Uses 10 fold CV and uses best prediciton lambda
  # as estimate for variable selection
  # -------------------------
  x <- data.matrix(data[,-1]) #explan var, glmnet can't use dataframe
  y <- data.matrix(data[,1]) #dependent var, glmnet can't use dataframe
  
  cv.out = cv.glmnet(x, y, alpha = 1, intercept=FALSE) # Fit lasso model on training data
  #lam = cv.out$lambda.1se # Select more conservative lambda for variable selection
  lam = cv.out$lambda.min
  
  #---------------------
  # Retention Frequency
  #---------------------
  lasso_coef = predict(cv.out, type = "coefficients", s = lam) # Display coefficients using lambda chosen by CV
  retention = var_retention(lasso_coef, beta) #counts significant vars
  identification = var_identification(lasso_coef, beta) #counts all vars

  #---------------------
  # Number Nonzero elements
  #--------------------- 
  nonzero = var_nonzero(lasso_coef, beta) #count nonzero vars
  
  #---------------------
  # MSE
  #---------------------
  mse <- cv.out$cvm[cv.out$lambda == cv.out$lambda.1se]
  
  
  results = list("retention" = retention, "identification" =identification, "mse" = mse, "nonzero" = nonzero)
  return(results)
}
cv.relaxed_lasso <- function(data, #data frame - dependent variable first
                     beta # true coefficients
){
  #--------------------------
  # Uses 10 fold CV and uses lambda
  # and gamma minimizing prediction error
  # for variable selection
  # -------------------------
  x <- data.matrix(data[,-1]) #explan var, glmnet can't use dataframe
  y <- data.matrix(data[,1]) #dependent var, glmnet can't use dataframe
  
  cv.out = cv.glmnet(x, y,intercept=FALSE, relax=TRUE) # Fit lasso model on training data

  #---------------------
  # Retention Frequency
  #---------------------
  lasso_coef = predict(cv.out, type = "coefficients", s = "lambda.min", gamma = "gamma.min")#"gamma.min") # Display coefficients using lambda chosen by CV
  retention = var_retention(lasso_coef, beta) #counts significant vars
  identification = var_identification(lasso_coef, beta) #counts all vars

  #---------------------
  # Number Nonzero elements
  #--------------------- 
  nonzero = var_nonzero(lasso_coef, beta) #count nonzero vars
  
  #---------------------
  # MSE
  #---------------------
  mse <- cv.out$cvm[cv.out$lambda == cv.out$lambda.1se] # which gamma value is this?
  
  
  results = list("retention" = retention, "identification" =identification, "mse" = mse, "nonzero" = nonzero)
  return(results)
  
}
#--------------------------------
# Simulation 1
#--------------------------------
set.seed(456)

start_time <- Sys.time()

# Simulation Parameters
#---------------------
n_sim = 100 # Number of simulations
snr.vec = exp(seq(log(0.05),log(6),length=10)) # Signal-to-noise ratios 
beta = beta_1(p=50,s=5) # beta vector

#Container to store results
#---------------------
colnames = c("ID_sim", "SNR", "Method", "Retention", "Nonzero", "Prediction")
results = data.frame(matrix(NaN, ncol=6, nrow=(n_sim*3*length(snr.vec))))
colnames(results) <- colnames

# Initialize Counter
counter <- 1

#Simulation
for (j in 1:length(snr.vec)){
  SNR = snr.vec[j]
  for (i in 1:n_sim){

    #Simulate the data
    #------------------------------
    df <- simulate(n=100, p=50, rho=0.5, beta=beta, SNR = SNR)$df
    
    ID <- paste(j,i) #identification touple of simulation
    
    #calculate AND store the resuls
    #------------------------------
    #Lasso
    res_lasso = cv.lasso_2(data=df, beta=beta)
    results[counter,] <- c(ID, SNR, "Lasso", res_lasso$retention, res_lasso$nonzero, res_lasso$mse)
    
    counter = counter+1 #increase counter by 1
    
    #Relaxd Lasso
    res_lasso = cv.relaxed_lasso(data=df, beta=beta)
    results[counter,] <- c(ID, SNR, "Relaxed Lasso", res_lasso$retention, res_lasso$nonzero, res_lasso$mse)
    
    counter = counter+1 #increase counter by 1
        
    #Random Forest   
    res_RF = RF_VSURF(data=df, beta=beta)
    results[counter,] <- c(ID, SNR, "RF", res_RF$retention, res_RF$nonzero, res_RF$OOB_error)
    
    counter = counter+1 #increase counter by 1
    
    #Save results
    #------------------------------
    write.csv(results,"sim1.csv", row.names = FALSE)
    
  }
}
Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.8 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 20 sec. and  28 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 12.5 sec. and  20 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  22 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  6 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 7 variables)
Estimated computational time (on one core): between 7 sec. and  8.7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 5 sec. and  12.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 12 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  16.3 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 18.7 sec. and  26.3 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  26.3 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  19.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  12.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 12 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 12.5 sec. and  15 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  12.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 0.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 55.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  11.2 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 13.8 sec. and  13.8 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  13.5 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 10 sec. and  12.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  19.5 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  21 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 6 variables)
Estimated computational time (on one core): between 3 sec. and  9 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  31.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 7.5 sec. and  26.3 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  26 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 18 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 12.5 sec. and  15 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  21 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  49.5 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 12 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  37.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 15 sec. and  21 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 9 sec. and  15.8 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 1.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 10 sec. and  12.5 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 1.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 14 sec. and  28 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 9 sec. and  15.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 11.3 sec. and  11.3 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 16.3 sec. and  26 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 2.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  37.5 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 15 sec. and  18 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 6 sec. and  24 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 4 sec. and  32 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 9 sec. and  11.3 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 11 sec. and  19.3 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 15 sec. and  18 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  22.8 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.8 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 22.5 sec. and  45 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 11.5 sec. and  63.2 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  13.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 10.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 11 sec. and  16.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 7 variables)
Estimated computational time (on one core): between 5.2 sec. and  8.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 9 sec. and  49.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  11.2 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  52.3 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 17.5 sec. and  28 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 6 variables)
Estimated computational time (on one core): between 4.5 sec. and  10.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 4 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 6 variables)
Estimated computational time (on one core): between 4.5 sec. and  7.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  13.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  14 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 5 variables)
Estimated computational time (on one core): between 2.5 sec. and  5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 16 sec. and  28 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 1.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.7 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  17.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.7 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 21.3 sec. and  34 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 12.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  18 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 16.2 sec. and  26 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  12.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 55 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 11 sec. and  19.3 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 2.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 3.5 sec. and  28 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  13.8 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 11.2 sec. and  11.3 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 5 variables)
Estimated computational time (on one core): between 3.7 sec. and  3.7 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 2.7 sec. and  19.3 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 18 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 12.5 sec. and  12.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  10 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  36 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 3 sec. and  18 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 11.2 sec. and  11.3 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 4 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 19 sec. and  47.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  33.7 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  40.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 14 sec. and  28 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 1.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 2.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 5 variables)
Estimated computational time (on one core): between 3.7 sec. and  5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54.5 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  10 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 6.5 sec. and  26 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  37.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 12 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 7 variables)
Estimated computational time (on one core): between 8.8 sec. and  7 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 1 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  20 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 15.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 17.5 sec. and  28 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  26 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  26 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 25 sec. and  45 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.7 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.7 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 13.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 15 sec. and  21 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 12.5 sec. and  12.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  26 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 5.5 sec. and  16.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 10.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  19.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  18 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  25.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 3.5 sec. and  28 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 13.7 sec. and  19.3 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  6 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 18.8 sec. and  37.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 18.8 sec. and  41.2 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  17.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 15.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  12.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 3 sec. and  27 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 4.5 sec. and  15.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 4 sec. and  36 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.8 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 4.5 sec. and  40.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  38.2 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 2.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 7.5 sec. and  37.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  40 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 22 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 10.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54.5 sec.

Interpretation step (on 7 variables)
Estimated computational time (on one core): between 5.2 sec. and  7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 16.3 sec. and  26 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 6 sec. and  24 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 13.8 sec. and  19.3 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  8 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 7 variables)
Estimated computational time (on one core): between 5.2 sec. and  8.7 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 15.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 17.2 sec. and  63.2 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 5 sec. and  17.5 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 2.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 16 sec. and  32 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 24 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |==========================================                                                            |  42%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================                                          |  58%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  30 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  22 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  13.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 6.5 sec. and  26 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 17.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 17.2 sec. and  63.2 sec.

Prediction step (on 13 variables)
Maximum estimated computational time (on one core): 22.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |================                                                                                      |  15%
  |                                                                                                            
  |========================                                                                              |  23%
  |                                                                                                            
  |===============================                                                                       |  31%
  |                                                                                                            
  |=======================================                                                               |  38%
  |                                                                                                            
  |===============================================                                                       |  46%
  |                                                                                                            
  |=======================================================                                               |  54%
  |                                                                                                            
  |===============================================================                                       |  62%
  |                                                                                                            
  |=======================================================================                               |  69%
  |                                                                                                            
  |==============================================================================                        |  77%
  |                                                                                                            
  |======================================================================================                |  85%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 10 sec. and  10 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 1 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  19.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 5 sec. and  17.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  36 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 19.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 14 sec. and  28 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 2.3 sec. and  13.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 1.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 17.5 sec. and  28 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 10.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 20 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 12 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 12.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 4.2 sec. and  29.7 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 10 sec. and  12.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 12 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  12.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 6.5 sec. and  19.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 8 sec. and  32 sec.

Prediction step (on 14 variables)
Maximum estimated computational time (on one core): 24.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=======                                                                                               |   7%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |======================                                                                                |  21%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |====================================                                                                  |  36%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |==================================================================                                    |  64%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |================================================================================                      |  79%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |===============================================================================================       |  93%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  46.8 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 12.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  10 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 4 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.7 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 4 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  22 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 1.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 18.7 sec. and  33.7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 20 sec. and  28 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 1.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  6 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 27 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |==========================================                                                            |  42%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================                                          |  58%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  30 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 10.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  27 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 18 sec.

  |                                                                                                            
  |                                                                                                      |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 5 variables)
Estimated computational time (on one core): between 5 sec. and  3.7 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 56 sec.

Interpretation step (on 7 variables)
Estimated computational time (on one core): between 7 sec. and  5.2 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 14 sec. and  28 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 3.2 sec. and  26 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 11 sec. and  16.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  32.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 14 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  17.5 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 1.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  12.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 3.2 sec. and  26 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 17.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 22 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 3 sec. and  24 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 10.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 14 sec. and  28 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 9 sec. and  31.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.8 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 12 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  27 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 60.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 21.2 sec. and  38.2 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 22 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 3 variables)
Estimated computational time (on one core): between 3.7 sec. and  2.2 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 54.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 11.2 sec. and  9 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  29.7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 10.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  10 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 10.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 10.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  20 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 20 sec.

  |                                                                                                            
  |                                                                                                      |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 11.2 sec. and  18 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 9 sec. and  45 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 12 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 10 sec. and  17.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 3 sec. and  21 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 56.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.8 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.8 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 10.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 1.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  45 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 19.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 10 sec. and  15 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 3 sec. and  18 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 24 variables)
Estimated computational time (on one core): between 30 sec. and  66 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 19.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 11 sec. and  16.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 17.5 sec. and  28 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  18 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 14 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  41.2 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 13.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  13.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 12.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  10 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  21 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 13.8 sec. and  13.7 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 12 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  22 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 2 sec. and  6 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 10.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 21.2 sec. and  34 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 24 variables)
Estimated computational time (on one core): between 18 sec. and  78 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  13.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  11 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  38.2 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 55 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  24 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 19 sec. and  42.7 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  13.5 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  19.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 55.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  36 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 18 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 18 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |==========================================                                                            |  42%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================                                          |  58%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 7 sec. and  28 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  50 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |==========================================                                                            |  42%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================                                          |  58%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 22.5 sec. and  45 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 13.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  49.5 sec.

Prediction step (on 13 variables)
Maximum estimated computational time (on one core): 19.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |================                                                                                      |  15%
  |                                                                                                            
  |========================                                                                              |  23%
  |                                                                                                            
  |===============================                                                                       |  31%
  |                                                                                                            
  |=======================================                                                               |  38%
  |                                                                                                            
  |===============================================                                                       |  46%
  |                                                                                                            
  |=======================================================                                               |  54%
  |                                                                                                            
  |===============================================================                                       |  62%
  |                                                                                                            
  |=======================================================================                               |  69%
  |                                                                                                            
  |==============================================================================                        |  77%
  |                                                                                                            
  |======================================================================================                |  85%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 18.7 sec. and  33.7 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  18 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  37.5 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 13.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  18 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  30 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 12 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 18.7 sec. and  26.3 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 1.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 10 sec. and  15 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 11.3 sec. and  6.7 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 55.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 7.5 sec. and  37.5 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  15.8 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  42.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  19.3 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 14 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  24 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 4 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 17.5 sec. and  21 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  9 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 10.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 10 sec. and  17.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  33.7 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.7 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 18.7 sec. and  30 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  19.5 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 12.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 15 sec. and  27 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 15 sec. and  18 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 18.7 sec. and  30 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 12 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 8 sec. and  32 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 3.3 sec. and  26 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  13.7 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 26.3 sec. and  57.7 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 24 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |==========================================                                                            |  42%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================                                          |  58%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 11 sec. and  16.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  17.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  19.5 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 18 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |==========================================                                                            |  42%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================                                          |  58%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 20 sec. and  55 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 10.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 23.7 sec. and  38 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  19.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 15.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 5 sec. and  45 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  28 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 18 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |==========================================                                                            |  42%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================                                          |  58%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 6.5 sec. and  19.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  36 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 24 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |==========================================                                                            |  42%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================                                          |  58%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 14 sec. and  28 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  49.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  47.5 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 17.5 sec. and  28 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 8 sec. and  40 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 2.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 4.3 sec. and  34 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 20 sec. and  32 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  24 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 16 sec. and  32 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  36 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.8 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  29.8 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 21 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |==========================================                                                            |  42%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================                                          |  58%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  38.2 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 13.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  55 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 1.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  10 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  13.8 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  52.5 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 19 sec. and  52.2 sec.

Prediction step (on 14 variables)
Maximum estimated computational time (on one core): 24.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=======                                                                                               |   7%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |======================                                                                                |  21%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |====================================                                                                  |  36%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |==================================================================                                    |  64%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |================================================================================                      |  79%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |===============================================================================================       |  93%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  27 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 19 sec. and  47.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 7 variables)
Estimated computational time (on one core): between 5.2 sec. and  8.7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 14 sec. and  28 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  36 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 3 sec. and  18 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 15.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 17.5 sec. and  21 sec.

Prediction step (on 13 variables)
Maximum estimated computational time (on one core): 19.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |================                                                                                      |  15%
  |                                                                                                            
  |========================                                                                              |  23%
  |                                                                                                            
  |===============================                                                                       |  31%
  |                                                                                                            
  |=======================================                                                               |  38%
  |                                                                                                            
  |===============================================                                                       |  46%
  |                                                                                                            
  |=======================================================                                               |  54%
  |                                                                                                            
  |===============================================================                                       |  62%
  |                                                                                                            
  |=======================================================================                               |  69%
  |                                                                                                            
  |==============================================================================                        |  77%
  |                                                                                                            
  |======================================================================================                |  85%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 7.5 sec. and  37.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 13.7 sec. and  16.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  42.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 15.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 18.8 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 1.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  40.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  13.5 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  27 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 16.5 sec. and  16.5 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 19.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  33.7 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  12.5 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 1.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  10 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  33.7 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 15 sec. and  24 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  36 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 2.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 10.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 11 sec. and  22 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  28 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 19 sec. and  52.3 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 57 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 23.8 sec. and  38 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 12.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  55 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  21 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 5 sec. and  10 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 8.5 sec. and  38.2 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 20 sec. and  36 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 11 sec. and  13.7 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  29.7 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 12.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 3.5 sec. and  28 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  52.2 sec.

Prediction step (on 13 variables)
Maximum estimated computational time (on one core): 22.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |================                                                                                      |  15%
  |                                                                                                            
  |========================                                                                              |  23%
  |                                                                                                            
  |===============================                                                                       |  31%
  |                                                                                                            
  |=======================================                                                               |  38%
  |                                                                                                            
  |===============================================                                                       |  46%
  |                                                                                                            
  |=======================================================                                               |  54%
  |                                                                                                            
  |===============================================================                                       |  62%
  |                                                                                                            
  |=======================================================================                               |  69%
  |                                                                                                            
  |==============================================================================                        |  77%
  |                                                                                                            
  |======================================================================================                |  85%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 11.2 sec. and  13.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 1 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 20 sec. and  55 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 7 sec. and  24.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 3 sec. and  18 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 11 sec. and  8.2 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 16 sec. and  40 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 12.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 12 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  38 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 5.5 sec. and  71.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 25 variables)
Estimated computational time (on one core): between 18.7 sec. and  68.7 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 17 sec. and  38.2 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  42.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  26.3 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  10 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 10.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  36 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 13 variables)
Maximum estimated computational time (on one core): 19.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |================                                                                                      |  15%
  |                                                                                                            
  |========================                                                                              |  23%
  |                                                                                                            
  |===============================                                                                       |  31%
  |                                                                                                            
  |=======================================                                                               |  38%
  |                                                                                                            
  |===============================================                                                       |  46%
  |                                                                                                            
  |=======================================================                                               |  54%
  |                                                                                                            
  |===============================================================                                       |  62%
  |                                                                                                            
  |=======================================================================                               |  69%
  |                                                                                                            
  |==============================================================================                        |  77%
  |                                                                                                            
  |======================================================================================                |  85%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 9 sec. and  11.3 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 6.5 sec. and  32.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 17.5 sec. and  35 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 18.7 sec. and  41.3 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 17.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 7 sec. and  35 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  40.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  49.5 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 13.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  29.8 sec.

Prediction step (on 14 variables)
Maximum estimated computational time (on one core): 28 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=======                                                                                               |   7%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |======================                                                                                |  21%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |====================================                                                                  |  36%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |==================================================================                                    |  64%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |================================================================================                      |  79%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |===============================================================================================       |  93%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 5 sec. and  15 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  40 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 3.2 sec. and  19.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 24 variables)
Estimated computational time (on one core): between 18 sec. and  78 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  14 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  57.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 55 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 18.8 sec. and  26.2 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  41.2 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 18 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 8 sec. and  36 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  40 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  12 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  40 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  42.5 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 18.7 sec. and  37.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 13.7 sec. and  16.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  29.7 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 9 sec. and  13.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 5 sec. and  50 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 7.5 sec. and  33.7 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 4.5 sec. and  40.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 16.2 sec. and  22.8 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  52.3 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  40 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 14 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  26 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 10 sec. and  20 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  47.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 20 sec. and  36 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  33.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 13.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 16 sec. and  40 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 1 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 15 sec. and  24 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  60.5 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 24 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |==========================================                                                            |  42%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================                                          |  58%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 17.2 sec. and  63.2 sec.

Prediction step (on 13 variables)
Maximum estimated computational time (on one core): 22.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |================                                                                                      |  15%
  |                                                                                                            
  |========================                                                                              |  23%
  |                                                                                                            
  |===============================                                                                       |  31%
  |                                                                                                            
  |=======================================                                                               |  38%
  |                                                                                                            
  |===============================================                                                       |  46%
  |                                                                                                            
  |=======================================================                                               |  54%
  |                                                                                                            
  |===============================================================                                       |  62%
  |                                                                                                            
  |=======================================================================                               |  69%
  |                                                                                                            
  |==============================================================================                        |  77%
  |                                                                                                            
  |======================================================================================                |  85%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  55 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 12.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  21 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 15 sec. and  12 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 19 sec. and  42.7 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 27.5 sec. and  60.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 7.5 sec. and  30 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 12.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  40 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 23.8 sec. and  42.7 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 4.8 sec. and  47.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 17.5 sec. and  21 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 24 variables)
Estimated computational time (on one core): between 18 sec. and  66 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  38.2 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 4.8 sec. and  52.3 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 2.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  57.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  42.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 24 variables)
Estimated computational time (on one core): between 18 sec. and  66 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 10.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 23.7 sec. and  52.3 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 18 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |==========================================                                                            |  42%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================                                          |  58%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 56.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  21 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 1.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  63 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 15.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 7.5 sec. and  37.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.8 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  40 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 22.5 sec. and  40.5 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 18 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |==========================================                                                            |  42%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================                                          |  58%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  55 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  30 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 11 sec. and  13.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 17.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  49.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 3.8 sec. and  30 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  15 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  47.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  30 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  47.2 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 7 sec. and  24.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  38.2 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  52.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 9 sec. and  36 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  49.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 12 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 11.5 sec. and  69 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  38 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 16 sec. and  32 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 19.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  28 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  13.7 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  40 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  28 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 26.2 sec. and  42 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 21 sec. and  47.2 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  47.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 5.2 sec. and  57.7 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  40.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 8 sec. and  32 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  50 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 14 sec. and  28 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  30 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 11 sec. and  19.3 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  37.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  36 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 13.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 11 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  50 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  21 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 2.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 5.2 sec. and  47.2 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  26.3 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 20 sec. and  40 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  36 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 18 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |==========================================                                                            |  42%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================                                          |  58%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  47.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 12 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 9.5 sec. and  47.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.7 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 3 sec. and  24 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 1.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 56 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  49.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 22.5 sec. and  45 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.8 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 10 sec. and  17.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  63 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 18.8 sec. and  30 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 11 sec. and  13.8 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  49.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 4.5 sec. and  40.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  60.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 2.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  30 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 13.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 21.2 sec. and  29.8 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  26.3 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 16 sec. and  32 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 1.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 4.7 sec. and  38 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 20 sec. and  55 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  52.2 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 4.5 sec. and  40.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  40 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 17.2 sec. and  57.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  29.8 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 4.5 sec. and  40.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  37.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 25 variables)
Estimated computational time (on one core): between 18.7 sec. and  75 sec.

Prediction step (on 13 variables)
Maximum estimated computational time (on one core): 19.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |================                                                                                      |  15%
  |                                                                                                            
  |========================                                                                              |  23%
  |                                                                                                            
  |===============================                                                                       |  31%
  |                                                                                                            
  |=======================================                                                               |  38%
  |                                                                                                            
  |===============================================                                                       |  46%
  |                                                                                                            
  |=======================================================                                               |  54%
  |                                                                                                            
  |===============================================================                                       |  62%
  |                                                                                                            
  |=======================================================================                               |  69%
  |                                                                                                            
  |==============================================================================                        |  77%
  |                                                                                                            
  |======================================================================================                |  85%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  38 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 24 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |==========================================                                                            |  42%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================                                          |  58%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  60.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  21 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 6 sec. and  24 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 8.5 sec. and  34 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  36 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 19 sec. and  47.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  17.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 22 sec. and  49.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 10 sec. and  45 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  38 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 22 sec. and  60.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 16.3 sec. and  22.7 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  55 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 23 sec. and  51.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  47.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  47.2 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  47.2 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  36 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  11 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  60.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  45 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  50 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  24 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 9 sec. and  49.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 20 sec. and  40 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 10 sec. and  40 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  33.2 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 17 sec. and  34 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 26 variables)
Estimated computational time (on one core): between 6.5 sec. and  71.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 17.2 sec. and  57.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  38 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  52.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  40 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 19 sec. and  47.5 sec.

Prediction step (on 13 variables)
Maximum estimated computational time (on one core): 19.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |================                                                                                      |  15%
  |                                                                                                            
  |========================                                                                              |  23%
  |                                                                                                            
  |===============================                                                                       |  31%
  |                                                                                                            
  |=======================================                                                               |  38%
  |                                                                                                            
  |===============================================                                                       |  46%
  |                                                                                                            
  |=======================================================                                               |  54%
  |                                                                                                            
  |===============================================================                                       |  62%
  |                                                                                                            
  |=======================================================================                               |  69%
  |                                                                                                            
  |==============================================================================                        |  77%
  |                                                                                                            
  |======================================================================================                |  85%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  52.2 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  38.2 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 22 sec. and  66 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  42.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 16 sec. and  32 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  36 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  40 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 17 sec. and  34 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 4.7 sec. and  38 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 16 sec. and  36 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 19.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 6 sec. and  21 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  36 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  24 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  26 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 9 sec. and  40.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  47.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 17.2 sec. and  63.2 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  45 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 12.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 5 sec. and  40 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 26 variables)
Estimated computational time (on one core): between 19.5 sec. and  71.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  57.8 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  26.3 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 11 sec. and  13.8 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 0.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 5.2 sec. and  57.8 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  36 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 21.2 sec. and  42.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 13 variables)
Maximum estimated computational time (on one core): 19.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |================                                                                                      |  15%
  |                                                                                                            
  |========================                                                                              |  23%
  |                                                                                                            
  |===============================                                                                       |  31%
  |                                                                                                            
  |=======================================                                                               |  38%
  |                                                                                                            
  |===============================================                                                       |  46%
  |                                                                                                            
  |=======================================================                                               |  54%
  |                                                                                                            
  |===============================================================                                       |  62%
  |                                                                                                            
  |=======================================================================                               |  69%
  |                                                                                                            
  |==============================================================================                        |  77%
  |                                                                                                            
  |======================================================================================                |  85%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  47.5 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 13.8 sec. and  16.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  36 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 1.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  47.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  36 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  52.3 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 16 sec. and  32 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 14 sec. and  21 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 16 sec. and  36 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 21.2 sec. and  38.2 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 17.2 sec. and  51.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 8.5 sec. and  42.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 3.2 sec. and  26 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 22 sec. and  49.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 8 sec. and  32 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.8 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 17.5 sec. and  24.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 6.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 17.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  47.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 28 variables)
Estimated computational time (on one core): between 21 sec. and  98 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 7.5 sec. and  37.5 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 20 sec. and  28 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 24 variables)
Estimated computational time (on one core): between 18 sec. and  66 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  49.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  26.3 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 10.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  49.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 10.5 sec. and  52.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 3.2 sec. and  19.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 5.2 sec. and  36.7 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  38.2 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 24 variables)
Estimated computational time (on one core): between 30 sec. and  72 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 9 sec. and  49.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 1.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 5.5 sec. and  55 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 10.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  68.3 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  50 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  40 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 8 sec. and  40 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 17.5 sec. and  21 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 8.5 sec. and  34 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  57.7 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 12.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 25 sec. and  50 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  55 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  57.8 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  38.2 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 5.3 sec. and  47.2 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 9 sec. and  45 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  60.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  36 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 8 sec. and  32 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  49.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 4.8 sec. and  42.7 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  60.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  8.2 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  55 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 20 sec. and  45 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  40.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 26 variables)
Estimated computational time (on one core): between 19.5 sec. and  58.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  52.3 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  40 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 22.5 sec. and  45 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  49.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  36 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 44.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 17.2 sec. and  63.3 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  49.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 4 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 26 variables)
Estimated computational time (on one core): between 32.5 sec. and  71.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  25.5 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  66 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 0.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 22 sec. and  55 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  28 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 10.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 21 sec. and  63 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  49.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 4 sec. and  36 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 3 sec. and  24 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  40 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 5.5 sec. and  49.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 13.8 sec. and  16.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  11.2 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 17.5 sec. and  24.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  36 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 17.2 sec. and  57.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 20 sec. and  45 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 44.5 sec.

Interpretation step (on 24 variables)
Estimated computational time (on one core): between 18 sec. and  66 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 17.2 sec. and  63.3 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  49.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  55 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 17.2 sec. and  63.3 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 23 sec. and  46 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 25 variables)
Estimated computational time (on one core): between 31.3 sec. and  68.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 21 sec. and  47.2 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 14 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  45 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 15.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  60.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 7 variables)
Estimated computational time (on one core): between 5.2 sec. and  12.3 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 17.2 sec. and  63.2 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 4.3 sec. and  34 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 4 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  60.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  47.2 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  57.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  40 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 17 sec. and  38.2 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  57.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 19 sec. and  38 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  40 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  38 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  52.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  40 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  47.2 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.7 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  49.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  47.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 12.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 5.3 sec. and  52.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.7 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  28 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  28 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 31 variables)
Estimated computational time (on one core): between 23.2 sec. and  108.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  50 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 25 variables)
Estimated computational time (on one core): between 18.7 sec. and  81.3 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  25.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 20 sec. and  36 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 4 sec. and  36 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  26.3 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 10 sec. and  50 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 4.8 sec. and  38 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  52.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  49.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  55 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 4.3 sec. and  34 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 17.2 sec. and  63.2 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  57.8 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 22 sec. and  49.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 26 variables)
Estimated computational time (on one core): between 19.5 sec. and  71.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  35 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  55 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  55 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 25 sec. and  35 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 24 variables)
Estimated computational time (on one core): between 18 sec. and  66 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  47.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 28.7 sec. and  57.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 26 variables)
Estimated computational time (on one core): between 19.5 sec. and  71.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 3.5 sec. and  24.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 22.5 sec. and  36 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 21 sec. and  57.8 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 24 variables)
Estimated computational time (on one core): between 18 sec. and  78 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 4 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  55 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 26 variables)
Estimated computational time (on one core): between 19.5 sec. and  84.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 22.5 sec. and  40.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  49.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  50 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  52.2 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 20 sec. and  28 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  60.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  38 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 1.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  60.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  60.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 27.5 sec. and  49.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  40 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 26 variables)
Estimated computational time (on one core): between 19.5 sec. and  78 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  49.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 21 sec. and  63 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 17.5 sec. and  28 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 17.2 sec. and  63.2 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 23.7 sec. and  42.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 27 variables)
Estimated computational time (on one core): between 20.2 sec. and  87.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  57.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  50 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 1.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 20 sec. and  32 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 20 sec. and  45 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 19 sec. and  52.3 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 25 sec. and  40 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  33.3 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  66 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 5.7 sec. and  57.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  60.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  36 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 29 variables)
Estimated computational time (on one core): between 21.7 sec. and  79.7 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 21 sec. and  57.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 22 sec. and  55 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 26 variables)
Estimated computational time (on one core): between 19.5 sec. and  71.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 1.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  50 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  38.2 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  60.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  47.2 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 20 sec. and  40 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 22 sec. and  60.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  52.3 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 21 sec. and  52.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 44.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  47.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  35 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  49.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  60.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 19 sec. and  47.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 21 sec. and  47.2 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 28 variables)
Estimated computational time (on one core): between 21 sec. and  91 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 9.5 sec. and  38 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 19 sec. and  38 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  50 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 28.8 sec. and  63.3 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 25 sec. and  45 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  50 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 4 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 19 sec. and  42.7 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 6.5 sec. and  22.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  28.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 24 variables)
Estimated computational time (on one core): between 18 sec. and  54 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 26.2 sec. and  57.7 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  50 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  40.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  52.3 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  52.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 22.5 sec. and  40.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 20 sec. and  55 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  55 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45.5 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 17.2 sec. and  57.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 25 variables)
Estimated computational time (on one core): between 18.7 sec. and  75 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 26 variables)
Estimated computational time (on one core): between 19.5 sec. and  71.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 25 variables)
Estimated computational time (on one core): between 31.3 sec. and  68.8 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 17.2 sec. and  63.2 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  36 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 21.3 sec. and  34 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  55 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 25 variables)
Estimated computational time (on one core): between 18.7 sec. and  68.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  47.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 26 variables)
Estimated computational time (on one core): between 19.5 sec. and  84.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  49.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 23 sec. and  63.2 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 24 variables)
Estimated computational time (on one core): between 18 sec. and  60 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  36 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  52.2 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 22 sec. and  60.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 20 sec. and  30 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 28 sec. and  32 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 20 sec. and  40 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  36 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  38.2 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 26.2 sec. and  47.2 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  22.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  57.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  50 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  45 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 23 sec. and  63.2 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 17.2 sec. and  63.3 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  52.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  42.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  36 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  57.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  40 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 19 sec. and  47.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  60.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 24 variables)
Estimated computational time (on one core): between 18 sec. and  72 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 30 variables)
Estimated computational time (on one core): between 22.5 sec. and  105 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%
end_time <- Sys.time()

cat("Duration for Number of Sims = ", n_sim, "is: ", end_time - start_time)
Duration for Number of Sims =  100 is:  9.945338
sim1 <- read.csv("sim1.csv", header=TRUE)
View(sim1)
df <- sim1 %>% 
  na_if(Inf) %>%
  group_by(SNR, Method) %>%  
  summarize(Mean_Ret = mean(Retention, na.rm=TRUE),
            Mean_Zero = mean(Nonzero, na.rm=TRUE),
            Mean_Pred = mean(Prediction, na.rm=TRUE))
`summarise()` has grouped output by 'SNR'. You can override using the `.groups` argument.
snr.breaks = round(exp(seq(from=min(log(sim1$SNR)),
                           to=max(log(sim1$SNR)),length=4)),2)

ggplot(data=df, aes(x=SNR, y=Mean_Ret, color=Method)) +
  geom_line(lwd=1) +
  geom_point(pch=19) +
  theme_bw() +
  #facet_grid(rows = vars(Method)) +
  #facet_grid(formula(paste(1,"~",2))) +
  xlab("Signal-to-noise ratio") +
  ylab("Retention") +
  geom_line(aes(x=SNR, y=5), lwd=0.5, linetype=3, color="black") +
  ggtitle("Simulation 1") + 
  scale_x_continuous(trans="log", breaks=snr.breaks)



ggplot(data=df, aes(x=SNR, y=Mean_Zero, color=Method)) +
  geom_line(lwd=1) +
  geom_point(pch=19) +
  theme_bw() +
  #facet_grid(rows = vars(Method)) +
  #facet_grid(formula(paste(1,"~",2))) +
  xlab("Signal-to-noise ratio") +
  ylab("Number nonzero coefficients") +
  geom_line(aes(x=SNR, y=5), lwd=0.5, linetype=3, color="black") +
  ggtitle("Simulation 1") + 
  scale_x_continuous(trans="log", breaks=snr.breaks)



ggplot(data=df, aes(x=SNR, y=Mean_Pred, color=Method)) +
  geom_line(lwd=1) +
  geom_point(pch=19) +
  theme_bw() +
  #facet_grid(rows = vars(Method)) +
  #facet_grid(formula(paste(1,"~",2))) +
  xlab("Signal-to-noise ratio") +
  ylab("Prediction Error") +
  geom_line(aes(x=SNR, y=5), lwd=0.5, linetype=3, color="black") +
  ggtitle("Simulation 1") + 
  scale_x_continuous(trans="log", breaks=snr.breaks)

#--------------------------------
# Simulation 2.a - changing correlation by changing beta
#--------------------------------
set.seed(456)

start_time <- Sys.time()

# Simulation Parameters
#---------------------
n_sim = 100 # Number of simulations
snr.vec = exp(seq(log(0.05),log(6),length=10)) # Signal-to-noise ratios 
beta = beta_2(p=50,s=5) # beta vector

#Container to store results
#---------------------
colnames = c("ID_sim", "SNR", "Method", "Retention", "Nonzero", "Prediction")
results = data.frame(matrix(NaN, ncol=6, nrow=(n_sim*3*length(snr.vec))))
colnames(results) <- colnames

# Initialize Counter
counter <- 1

#Simulation
for (j in 1:length(snr.vec)){
  SNR = snr.vec[j]
  for (i in 1:n_sim){

    #Simulate the data
    #------------------------------
    df <- simulate(n=100, p=50, rho=0.5, beta=beta, SNR = SNR)$df
    
    ID <- paste(j,i) #identification touple of simulation
    
    #calculate AND store the resuls
    #------------------------------
    #Lasso
    res_lasso = cv.lasso_2(data=df, beta=beta)
    results[counter,] <- c(ID, SNR, "Lasso", res_lasso$retention, res_lasso$nonzero, res_lasso$mse)
    
    counter = counter+1 #increase counter by 1
    
    #Relaxd Lasso
    res_lasso = cv.relaxed_lasso(data=df, beta=beta)
    results[counter,] <- c(ID, SNR, "Relaxed Lasso", res_lasso$retention, res_lasso$nonzero, res_lasso$mse)
    
    counter = counter+1 #increase counter by 1
        
    #Random Forest   
    res_RF = RF_VSURF(data=df, beta=beta)
    results[counter,] <- c(ID, SNR, "RF", res_RF$retention, res_RF$nonzero, res_RF$OOB_error)
    
    counter = counter+1 #increase counter by 1
    
    #Save results
    #------------------------------
    write.csv(results,"sim2a.csv", row.names = FALSE)
    
  }
}
Thresholding step
Estimated computational time (on one core): 57 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 13.7 sec. and  16.5 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 12.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  13.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  13.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 7 variables)
Estimated computational time (on one core): between 5.2 sec. and  7 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  8 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 55.5 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 8 sec. and  10 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 13 variables)
Maximum estimated computational time (on one core): 22.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |================                                                                                      |  15%
  |                                                                                                            
  |========================                                                                              |  23%
  |                                                                                                            
  |===============================                                                                       |  31%
  |                                                                                                            
  |=======================================                                                               |  38%
  |                                                                                                            
  |===============================================                                                       |  46%
  |                                                                                                            
  |=======================================================                                               |  54%
  |                                                                                                            
  |===============================================================                                       |  62%
  |                                                                                                            
  |=======================================================================                               |  69%
  |                                                                                                            
  |==============================================================================                        |  77%
  |                                                                                                            
  |======================================================================================                |  85%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 7 variables)
Estimated computational time (on one core): between 5.2 sec. and  8.8 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 24 variables)
Estimated computational time (on one core): between 18 sec. and  72 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  19.3 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 55.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 23.8 sec. and  52.3 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 55 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 57 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  18 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 57 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  17.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 55.5 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  8 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 9 sec. and  13.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 10 sec. and  8 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  21 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  19.3 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  21 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 56.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 9 sec. and  13.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 55 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  24 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  17.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  38.2 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 6 variables)
Estimated computational time (on one core): between 4.5 sec. and  7.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  21 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 13 variables)
Maximum estimated computational time (on one core): 19.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |================                                                                                      |  15%
  |                                                                                                            
  |========================                                                                              |  23%
  |                                                                                                            
  |===============================                                                                       |  31%
  |                                                                                                            
  |=======================================                                                               |  38%
  |                                                                                                            
  |===============================================                                                       |  46%
  |                                                                                                            
  |=======================================================                                               |  54%
  |                                                                                                            
  |===============================================================                                       |  62%
  |                                                                                                            
  |=======================================================================                               |  69%
  |                                                                                                            
  |==============================================================================                        |  77%
  |                                                                                                            
  |======================================================================================                |  85%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 14 sec. and  28 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 13 variables)
Maximum estimated computational time (on one core): 26 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |================                                                                                      |  15%
  |                                                                                                            
  |========================                                                                              |  23%
  |                                                                                                            
  |===============================                                                                       |  31%
  |                                                                                                            
  |=======================================                                                               |  38%
  |                                                                                                            
  |===============================================                                                       |  46%
  |                                                                                                            
  |=======================================================                                               |  54%
  |                                                                                                            
  |===============================================================                                       |  62%
  |                                                                                                            
  |=======================================================================                               |  69%
  |                                                                                                            
  |==============================================================================                        |  77%
  |                                                                                                            
  |======================================================================================                |  85%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  21 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 57 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 8 sec. and  10 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 10 sec. and  12.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.8 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 8 sec. and  10 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  21 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 55.5 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 8 sec. and  10 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 14 sec. and  21 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 9 sec. and  15.8 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 13 variables)
Maximum estimated computational time (on one core): 22.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |================                                                                                      |  15%
  |                                                                                                            
  |========================                                                                              |  23%
  |                                                                                                            
  |===============================                                                                       |  31%
  |                                                                                                            
  |=======================================                                                               |  38%
  |                                                                                                            
  |===============================================                                                       |  46%
  |                                                                                                            
  |=======================================================                                               |  54%
  |                                                                                                            
  |===============================================================                                       |  62%
  |                                                                                                            
  |=======================================================================                               |  69%
  |                                                                                                            
  |==============================================================================                        |  77%
  |                                                                                                            
  |======================================================================================                |  85%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  37.5 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 7 variables)
Estimated computational time (on one core): between 5.2 sec. and  8.8 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  10 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 18.8 sec. and  26.3 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  40 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  21 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  10 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 4 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 56 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 16.2 sec. and  19.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  13.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 13.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 17.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  10 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  17.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 4 variables)
Estimated computational time (on one core): between 4 sec. and  4 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 1.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 5 variables)
Estimated computational time (on one core): between 3.7 sec. and  3.7 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 7 variables)
Estimated computational time (on one core): between 5.2 sec. and  7 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 1.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 55 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  42.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 7 variables)
Estimated computational time (on one core): between 5.2 sec. and  8.7 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  10 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  17.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  13.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  17.5 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 12.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  12.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  10 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 9 sec. and  13.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 7 variables)
Estimated computational time (on one core): between 5.2 sec. and  8.7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  26.3 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 7 variables)
Estimated computational time (on one core): between 5.2 sec. and  8.7 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 15 sec. and  18 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  11.2 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  12.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 13.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 4 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  57.8 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 17.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  10 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  24 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 7 variables)
Estimated computational time (on one core): between 5.2 sec. and  8.7 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 12.5 sec. and  15 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 10 sec. and  15 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  8 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 21 sec. and  57.7 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 3 variables)
Estimated computational time (on one core): between 2.2 sec. and  2.2 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 17.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.7 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 18.7 sec. and  30 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  38.2 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 11 sec. and  16.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  8 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 16.3 sec. and  26 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 25 sec. and  45 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  13.7 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 12.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  15.8 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  26.3 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  60.5 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 24 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |==========================================                                                            |  42%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================                                          |  58%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 8 sec. and  10 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  57.8 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 24 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |==========================================                                                            |  42%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================                                          |  58%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  18 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  13.8 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 1.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  37.5 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 11 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  21 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 4 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  9 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  45 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 10.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 25 sec. and  50 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  13.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 4 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 16 sec. and  32 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  24 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  15.8 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 15 sec. and  24 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 16.3 sec. and  22.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 55.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  60.5 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  30 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 12.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 11 sec. and  16.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  10 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 15 sec. and  18 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  12.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  19.3 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 15.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  49.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 14 sec. and  21 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  13.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  37.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 55 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  21 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 19 sec. and  47.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  15.8 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  13.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 7 variables)
Estimated computational time (on one core): between 5.2 sec. and  8.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 20 sec. and  32 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  57.7 sec.

Prediction step (on 14 variables)
Maximum estimated computational time (on one core): 21 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=======                                                                                               |   7%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |======================                                                                                |  21%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |====================================                                                                  |  36%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |==================================================================                                    |  64%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |================================================================================                      |  79%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |===============================================================================================       |  93%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  10 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  19.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 16 sec. and  36 sec.

Prediction step (on 13 variables)
Maximum estimated computational time (on one core): 19.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |================                                                                                      |  15%
  |                                                                                                            
  |========================                                                                              |  23%
  |                                                                                                            
  |===============================                                                                       |  31%
  |                                                                                                            
  |=======================================                                                               |  38%
  |                                                                                                            
  |===============================================                                                       |  46%
  |                                                                                                            
  |=======================================================                                               |  54%
  |                                                                                                            
  |===============================================================                                       |  62%
  |                                                                                                            
  |=======================================================================                               |  69%
  |                                                                                                            
  |==============================================================================                        |  77%
  |                                                                                                            
  |======================================================================================                |  85%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 10 sec. and  15 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 5 variables)
Estimated computational time (on one core): between 3.7 sec. and  3.7 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  26 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.8 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  57.7 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 9 sec. and  13.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 6 variables)
Estimated computational time (on one core): between 4.5 sec. and  6 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.8 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 14 sec. and  28 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 13.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 7 variables)
Estimated computational time (on one core): between 5.2 sec. and  7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  15.8 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  13.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 13.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  47.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 4 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  11.3 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 14 sec. and  28 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  37.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  13.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  29.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  13.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 4 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  36 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.8 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  29.8 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 12.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 10 sec. and  15 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 11.2 sec. and  13.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 14 sec. and  24.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 17 sec. and  34 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 14 variables)
Maximum estimated computational time (on one core): 28 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=======                                                                                               |   7%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |======================                                                                                |  21%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |====================================                                                                  |  36%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |==================================================================                                    |  64%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |================================================================================                      |  79%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |===============================================================================================       |  93%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.8 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 13.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 7 variables)
Estimated computational time (on one core): between 5.2 sec. and  8.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  29.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  57.8 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 19.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  37.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  19.3 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 6 variables)
Estimated computational time (on one core): between 4.5 sec. and  7.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  10 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  26.3 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 18 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |==========================================                                                            |  42%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================                                          |  58%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 24 sec.

  |                                                                                                            
  |                                                                                                      |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.7 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  38.2 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 56 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 20 sec. and  32 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  13.7 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  26.3 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.8 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 11 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  36 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 11 sec. and  11 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 7 variables)
Estimated computational time (on one core): between 5.2 sec. and  7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  57.8 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  52.2 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 14 variables)
Maximum estimated computational time (on one core): 28 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=======                                                                                               |   7%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |======================                                                                                |  21%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |====================================                                                                  |  36%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |==================================================================                                    |  64%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |================================================================================                      |  79%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |===============================================================================================       |  93%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 4 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 55 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 15.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 14 variables)
Maximum estimated computational time (on one core): 21 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=======                                                                                               |   7%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |======================                                                                                |  21%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |====================================                                                                  |  36%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |==================================================================                                    |  64%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |================================================================================                      |  79%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |===============================================================================================       |  93%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 11 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  11.2 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  26 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  36 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  26.3 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  21 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  13.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  18 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  47.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  36 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  36 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  50 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 18 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |==========================================                                                            |  42%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================                                          |  58%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  24 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 16 sec. and  36 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.8 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 14 variables)
Maximum estimated computational time (on one core): 24.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=======                                                                                               |   7%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |======================                                                                                |  21%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |====================================                                                                  |  36%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |==================================================================                                    |  64%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |================================================================================                      |  79%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |===============================================================================================       |  93%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  30 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  10 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.7 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 18 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |==========================================                                                            |  42%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================                                          |  58%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 14 sec. and  28 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 9 sec. and  11.3 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.7 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  55 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  11 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 10 sec. and  15 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  47.2 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  26 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 11 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  12.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 16 sec. and  32 sec.

Prediction step (on 13 variables)
Maximum estimated computational time (on one core): 19.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |================                                                                                      |  15%
  |                                                                                                            
  |========================                                                                              |  23%
  |                                                                                                            
  |===============================                                                                       |  31%
  |                                                                                                            
  |=======================================                                                               |  38%
  |                                                                                                            
  |===============================================                                                       |  46%
  |                                                                                                            
  |=======================================================                                               |  54%
  |                                                                                                            
  |===============================================================                                       |  62%
  |                                                                                                            
  |=======================================================================                               |  69%
  |                                                                                                            
  |==============================================================================                        |  77%
  |                                                                                                            
  |======================================================================================                |  85%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 11 sec. and  16.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 14 variables)
Maximum estimated computational time (on one core): 24.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  17.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 16 sec. and  36 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 19.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 16 sec. and  32 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.8 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  19.3 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 14 variables)
Maximum estimated computational time (on one core): 24.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=======                                                                                               |   7%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |======================                                                                                |  21%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |====================================                                                                  |  36%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |==================================================================                                    |  64%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |================================================================================                      |  79%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |===============================================================================================       |  93%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  29.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  36 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 18 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |==========================================                                                            |  42%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================                                          |  58%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 1.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  17.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 2.2 sec. and  13.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  12.5 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 17.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
Warning in min(model.vsurf$err.pred) :
  no non-missing arguments to min; returning Inf
Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  17.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 16 sec. and  32 sec.

Prediction step (on 13 variables)
Maximum estimated computational time (on one core): 26 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |================                                                                                      |  15%
  |                                                                                                            
  |========================                                                                              |  23%
  |                                                                                                            
  |===============================                                                                       |  31%
  |                                                                                                            
  |=======================================                                                               |  38%
  |                                                                                                            
  |===============================================                                                       |  46%
  |                                                                                                            
  |=======================================================                                               |  54%
  |                                                                                                            
  |===============================================================                                       |  62%
  |                                                                                                            
  |=======================================================================                               |  69%
  |                                                                                                            
  |==============================================================================                        |  77%
  |                                                                                                            
  |======================================================================================                |  85%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  29.8 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 15 sec. and  24 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  24 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 12.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  36 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  21 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  28 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 24 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |==========================================                                                            |  42%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================                                          |  58%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 15.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.8 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  26.3 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 15 sec. and  24 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  49.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.7 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 12.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  42.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 17.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 15.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  60.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  33.7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  52.2 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.8 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 14 sec. and  28 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 26.2 sec. and  57.8 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 17.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  45 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 16 sec. and  32 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  12.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  40 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  47.5 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 11 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  26.3 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 55 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  52.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  21 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.7 sec. and  52.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  26.2 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 10 sec. and  12.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  28 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  50 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 19.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 15 sec. and  24 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  36 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 13.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 11 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 17.2 sec. and  63.3 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 23.7 sec. and  42.7 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 18 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |==========================================                                                            |  42%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================                                          |  58%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 22.5 sec. and  45 sec.

Prediction step (on 13 variables)
Maximum estimated computational time (on one core): 26 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |================                                                                                      |  15%
  |                                                                                                            
  |========================                                                                              |  23%
  |                                                                                                            
  |===============================                                                                       |  31%
  |                                                                                                            
  |=======================================                                                               |  38%
  |                                                                                                            
  |===============================================                                                       |  46%
  |                                                                                                            
  |=======================================================                                               |  54%
  |                                                                                                            
  |===============================================================                                       |  62%
  |                                                                                                            
  |=======================================================================                               |  69%
  |                                                                                                            
  |==============================================================================                        |  77%
  |                                                                                                            
  |======================================================================================                |  85%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.7 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 1.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  17.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 17 sec. and  34 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 13.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 13.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 14 variables)
Maximum estimated computational time (on one core): 28 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=======                                                                                               |   7%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |======================                                                                                |  21%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |====================================                                                                  |  36%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |==================================================================                                    |  64%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |================================================================================                      |  79%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |===============================================================================================       |  93%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  52.3 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  11.3 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  40 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 1.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.8 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  21 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.8 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 11 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  11 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 16.2 sec. and  26 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.8 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 21 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |==========================================                                                            |  42%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================                                          |  58%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  13.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  19.3 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  29.7 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 18 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |==========================================                                                            |  42%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================                                          |  58%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 24 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |==========================================                                                            |  42%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================                                          |  58%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.7 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  11.3 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  47.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 12.5 sec. and  12.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  26.3 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  10 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 17.5 sec. and  28 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 14 sec. and  28 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 15.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  10 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 23 sec. and  63.2 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 17.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 24 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |==========================================                                                            |  42%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================                                          |  58%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 13.7 sec. and  11 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  29.7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.8 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 17 sec. and  34 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 2 variables)
Maximum estimated computational time (on one core): 1.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  38.2 sec.

Prediction step (on 13 variables)
Maximum estimated computational time (on one core): 19.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |================                                                                                      |  15%
  |                                                                                                            
  |========================                                                                              |  23%
  |                                                                                                            
  |===============================                                                                       |  31%
  |                                                                                                            
  |=======================================                                                               |  38%
  |                                                                                                            
  |===============================================                                                       |  46%
  |                                                                                                            
  |=======================================================                                               |  54%
  |                                                                                                            
  |===============================================================                                       |  62%
  |                                                                                                            
  |=======================================================================                               |  69%
  |                                                                                                            
  |==============================================================================                        |  77%
  |                                                                                                            
  |======================================================================================                |  85%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 17.2 sec. and  63.2 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  40 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 11 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  47.5 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 18 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |==========================================                                                            |  42%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================                                          |  58%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 13.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 54 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  33.7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  21 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  38.2 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  50 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  26 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  38 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 10 sec. and  10 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  35 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 17 sec. and  34 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  47.5 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 13.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 10 sec. and  10 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.7 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 17 sec. and  34 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 24 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |==========================================                                                            |  42%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================                                          |  58%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 17 sec. and  34 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  26.3 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 18.7 sec. and  30 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  19.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 16 sec. and  28 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 16.3 sec. and  26 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  47.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 25 variables)
Estimated computational time (on one core): between 18.7 sec. and  81.3 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  52.3 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  24 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  29.7 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 18 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |==========================================                                                            |  42%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================                                          |  58%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 14 sec. and  24.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  13.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 16 sec. and  32 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  50 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  21 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 19 sec. and  42.7 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 12.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 15.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  19.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 16 sec. and  32 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  24 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  13.8 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  28 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  10 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  42.7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.3 sec. and  30 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  38.2 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  21 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 9 sec. and  11.3 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.8 sec. and  19.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.8 sec. and  26 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 15.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 23 variables)
Estimated computational time (on one core): between 17.2 sec. and  57.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  26.2 sec.

Prediction step (on 13 variables)
Maximum estimated computational time (on one core): 19.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |================                                                                                      |  15%
  |                                                                                                            
  |========================                                                                              |  23%
  |                                                                                                            
  |===============================                                                                       |  31%
  |                                                                                                            
  |=======================================                                                               |  38%
  |                                                                                                            
  |===============================================                                                       |  46%
  |                                                                                                            
  |=======================================================                                               |  54%
  |                                                                                                            
  |===============================================================                                       |  62%
  |                                                                                                            
  |=======================================================================                               |  69%
  |                                                                                                            
  |==============================================================================                        |  77%
  |                                                                                                            
  |======================================================================================                |  85%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.8 sec. and  57.8 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 13.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  13.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.3 sec. and  30 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 53 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  19.3 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  31.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  36 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.3 sec. and  13.8 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.8 sec. and  13.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 16 sec. and  32 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.3 sec. and  16.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.8 sec. and  52.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.3 sec. and  30 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.8 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.8 sec. and  34 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.8 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 26 variables)
Estimated computational time (on one core): between 19.5 sec. and  71.5 sec.

Prediction step (on 12 variables)
Maximum estimated computational time (on one core): 18 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |========                                                                                              |   8%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |==========================================                                                            |  42%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================                                          |  58%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |==============================================================================================        |  92%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.8 sec. and  34 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  45 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 15.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  26.2 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  38 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 52.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.3 sec. and  33.7 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  38.2 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  33.8 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 18.7 sec. and  26.3 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.3 sec. and  47.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 19 sec. and  42.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  9 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.3 sec. and  30 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.3 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 21.2 sec. and  34 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  18 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.3 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.8 sec. and  34 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.8 sec. and  26 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.3 sec. and  30 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  19.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  26.3 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 19 sec. and  47.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.8 sec. and  38.2 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.8 sec. and  19.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  36 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 18.8 sec. and  30 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  19.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.3 sec. and  30 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 10 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 21.2 sec. and  29.8 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 14 sec. and  21 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.8 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 12.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 27.5 sec. and  60.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  37.5 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  47.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  21 sec.

Prediction step (on 11 variables)
Maximum estimated computational time (on one core): 16.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=========                                                                                             |   9%
  |                                                                                                            
  |===================                                                                                   |  18%
  |                                                                                                            
  |============================                                                                          |  27%
  |                                                                                                            
  |=====================================                                                                 |  36%
  |                                                                                                            
  |==============================================                                                        |  45%
  |                                                                                                            
  |========================================================                                              |  55%
  |                                                                                                            
  |=================================================================                                     |  64%
  |                                                                                                            
  |==========================================================================                            |  73%
  |                                                                                                            
  |===================================================================================                   |  82%
  |                                                                                                            
  |=============================================================================================         |  91%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.3 sec. and  26.3 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  18 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 6 variables)
Estimated computational time (on one core): between 4.5 sec. and  7.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 25 sec. and  40 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 12.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.8 sec. and  29.7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.8 sec. and  22.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 14 sec. and  21 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.8 sec. and  29.8 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 24 variables)
Estimated computational time (on one core): between 24 sec. and  66 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 8 variables)
Estimated computational time (on one core): between 6 sec. and  10 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 12.5 sec. and  15 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 14 sec. and  21 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  49.5 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 51 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.8 sec. and  22.8 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 22 variables)
Estimated computational time (on one core): between 16.5 sec. and  49.5 sec.

Prediction step (on 10 variables)
Maximum estimated computational time (on one core): 15 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========                                                                                            |  10%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |===============================                                                                       |  30%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |=======================================================================                               |  70%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |============================================================================================          |  90%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 19 sec. and  42.7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  36 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  28 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  28 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  26.3 sec.

Prediction step (on 3 variables)
Maximum estimated computational time (on one core): 2.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.8 sec. and  22.8 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.3 sec. and  19.3 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  50 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.8 sec. and  22.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 26.3 sec. and  57.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  24 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.8 sec. and  57.7 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  21 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  28 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  45 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.8 sec. and  19.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  40.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.8 sec. and  47.3 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 19 sec. and  42.7 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.8 sec. and  34 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.3 sec. and  16.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  36 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.3 sec. and  47.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.8 sec. and  19.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 17 sec. and  34 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.3 sec. and  42.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 9 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 14 sec. and  28 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 15 sec. and  50 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  15.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.8 sec. and  19.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  45 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.8 sec. and  47.3 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 20 sec. and  32 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 14 sec. and  21 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 17 sec. and  34 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 11 sec. and  11 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.8 sec. and  19.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.8 sec. and  22.8 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  36 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.8 sec. and  38.2 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.3 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 11 sec. and  16.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 1.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  28 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 8 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=============                                                                                         |  12%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |======================================                                                                |  38%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |================================================================                                      |  62%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |=========================================================================================             |  88%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.8 sec. and  26 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  40.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  26.3 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.3 sec. and  42.7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.8 sec. and  19.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.8 sec. and  22.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 15.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 17 sec. and  42.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 6.5 sec. and  19.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 18.8 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  12.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.3 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.3 sec. and  47.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.8 sec. and  19.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  45 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 21.2 sec. and  34 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  40.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  26.3 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  21 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 13.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 11 sec. and  16.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.8 sec. and  29.8 sec.

Prediction step (on 9 variables)
Maximum estimated computational time (on one core): 11.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===========                                                                                           |  11%
  |                                                                                                            
  |=======================                                                                               |  22%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |=============================================                                                         |  44%
  |                                                                                                            
  |=========================================================                                             |  56%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |===============================================================================                       |  78%
  |                                                                                                            
  |===========================================================================================           |  89%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  21 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 20 sec. and  32 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 5.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 15 sec. and  33.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 27 variables)
Estimated computational time (on one core): between 27 sec. and  87.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  28 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 16 sec. and  32 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.8 sec. and  19.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.3 sec. and  42.8 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  15 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  21 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  19.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.3 sec. and  30 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 4 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  38.2 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  11 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  19.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.8 sec. and  34 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 17 sec. and  34 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 14 sec. and  21 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  21 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 11 sec. and  13.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.8 sec. and  26 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  19.3 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.3 sec. and  26.3 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45 sec.

Interpretation step (on 20 variables)
Estimated computational time (on one core): between 20 sec. and  40 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 16 sec. and  32 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.8 sec. and  47.2 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  28 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.8 sec. and  26 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 8.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 26 variables)
Estimated computational time (on one core): between 19.5 sec. and  71.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 7.5 sec. and  17.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 16 sec. and  32 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.3 sec. and  16.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.8 sec. and  22.8 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 19 sec. and  47.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.3 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.3 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45.5 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  16.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 18.7 sec. and  30 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  28 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 50 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  45 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 17 sec. and  29.7 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 15 sec. and  21 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 9 variables)
Estimated computational time (on one core): between 6.7 sec. and  9 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 11 variables)
Estimated computational time (on one core): between 8.2 sec. and  19.3 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 16 sec. and  32 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 17 sec. and  34 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  26.3 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 7 variables)
Estimated computational time (on one core): between 5.2 sec. and  8.7 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.8 sec. and  34 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  45 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 44.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 17 sec. and  25.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 25 variables)
Estimated computational time (on one core): between 18.7 sec. and  81.3 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 10 variables)
Estimated computational time (on one core): between 10 sec. and  12.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.3 sec. and  33.7 sec.

Prediction step (on 7 variables)
Maximum estimated computational time (on one core): 7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |===============                                                                                       |  14%
  |                                                                                                            
  |=============================                                                                         |  29%
  |                                                                                                            
  |============================================                                                          |  43%
  |                                                                                                            
  |==========================================================                                            |  57%
  |                                                                                                            
  |=========================================================================                             |  71%
  |                                                                                                            
  |=======================================================================================               |  86%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.8 sec. and  22.8 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  24 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 6.2 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  24.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.3 sec. and  30 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 14 sec. and  21 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 18.7 sec. and  26.2 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.8 sec. and  22.8 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  26 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 15 sec. and  24 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48.5 sec.

Interpretation step (on 21 variables)
Estimated computational time (on one core): between 15.8 sec. and  52.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 16 variables)
Estimated computational time (on one core): between 12 sec. and  32 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 9.7 sec. and  22.8 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  24 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 18 sec. and  40.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 15 variables)
Estimated computational time (on one core): between 11.2 sec. and  30 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 45.5 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.7 sec. and  34 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 18 variables)
Estimated computational time (on one core): between 13.5 sec. and  40.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 21.2 sec. and  29.7 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.7 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 16.2 sec. and  19.5 sec.

Prediction step (on 4 variables)
Maximum estimated computational time (on one core): 3 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |==========================                                                                            |  25%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |============================================================================                          |  75%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 49.5 sec.

Interpretation step (on 13 variables)
Estimated computational time (on one core): between 13 sec. and  19.5 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 4.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 47.5 sec.

Interpretation step (on 14 variables)
Estimated computational time (on one core): between 10.5 sec. and  21 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 19 variables)
Estimated computational time (on one core): between 14.2 sec. and  47.5 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 12 sec. and  24 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 7.5 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 48 sec.

Interpretation step (on 12 variables)
Estimated computational time (on one core): between 9 sec. and  18 sec.

Prediction step (on 6 variables)
Maximum estimated computational time (on one core): 6 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |=================                                                                                     |  17%
  |                                                                                                            
  |==================================                                                                    |  33%
  |                                                                                                            
  |===================================================                                                   |  50%
  |                                                                                                            
  |====================================================================                                  |  67%
  |                                                                                                            
  |=====================================================================================                 |  83%
  |                                                                                                            
  |======================================================================================================| 100%Thresholding step
Estimated computational time (on one core): 46 sec.

Interpretation step (on 17 variables)
Estimated computational time (on one core): between 12.8 sec. and  34 sec.

Prediction step (on 5 variables)
Maximum estimated computational time (on one core): 3.8 sec.

  |                                                                                                            
  |                                                                                                      |   0%
  |                                                                                                            
  |====================                                                                                  |  20%
  |                                                                                                            
  |=========================================                                                             |  40%
  |                                                                                                            
  |=============================================================                                         |  60%
  |                                                                                                            
  |==================================================================================                    |  80%
  |                                                                                                            
  |======================================================================================================| 100%
end_time <- Sys.time()

cat("Duration for Number of Sims = ", n_sim, "is: ", end_time - start_time)
Duration for Number of Sims =  100 is:  9.684794
#---------------
sim2a <- read.csv("sim2a.csv", header=TRUE)

df <- sim2a %>% 
  na_if(Inf) %>%
  group_by(SNR, Method) %>%  
  summarize(Mean_Ret = mean(Retention, na.rm=TRUE),
            Mean_Zero = mean(Nonzero, na.rm=TRUE),
            Mean_Pred = mean(Prediction, na.rm=TRUE))
`summarise()` has grouped output by 'SNR'. You can override using the `.groups` argument.
snr.breaks = round(exp(seq(from=min(log(sim1$SNR)),
                           to=max(log(sim1$SNR)),length=4)),2)

ggplot(data=df, aes(x=SNR, y=Mean_Ret, color=Method)) +
  geom_line(lwd=1) +
  geom_point(pch=19) +
  theme_bw() +
  #facet_grid(rows = vars(Method)) +
  #facet_grid(formula(paste(1,"~",2))) +
  xlab("Signal-to-noise ratio") +
  ylab("Retention") +
  geom_line(aes(x=SNR, y=5), lwd=0.5, linetype=3, color="black") +
  ggtitle("Simulation 1") + 
  scale_x_continuous(trans="log", breaks=snr.breaks)



ggplot(data=df, aes(x=SNR, y=Mean_Zero, color=Method)) +
  geom_line(lwd=1) +
  geom_point(pch=19) +
  theme_bw() +
  #facet_grid(rows = vars(Method)) +
  #facet_grid(formula(paste(1,"~",2))) +
  xlab("Signal-to-noise ratio") +
  ylab("Number nonzero coefficients") +
  geom_line(aes(x=SNR, y=5), lwd=0.5, linetype=3, color="black") +
  ggtitle("Simulation 1") + 
  scale_x_continuous(trans="log", breaks=snr.breaks)



ggplot(data=df, aes(x=SNR, y=Mean_Pred, color=Method)) +
  geom_line(lwd=1) +
  geom_point(pch=19) +
  theme_bw() +
  #facet_grid(rows = vars(Method)) +
  #facet_grid(formula(paste(1,"~",2))) +
  xlab("Signal-to-noise ratio") +
  ylab("Prediction Error") +
  geom_line(aes(x=SNR, y=5), lwd=0.5, linetype=3, color="black") +
  ggtitle("Simulation 1") + 
  scale_x_continuous(trans="log", breaks=snr.breaks)

#--------------
# Retention Plot
#---------------
true_sparsity = sum(beta)# SUM as sparsity measure not correct if true beta not binary
plot(snr.vec, retention_frequency(retention_lasso, true_sparsity), main="Retention frequency - Simulation 2", col="blue", type = "b")
lines(snr.vec, retention_frequency(retention_lasso2, true_sparsity), col="green", type="b")
lines(snr.vec, retention_frequency(retention_RF, true_sparsity), col="red", type="b")

#--------------
# Identification Plot
#---------------
true_sparsity = length(beta)# SUM as sparsity measure not correct if true beta not binary
plot(snr.vec, retention_frequency(identification_lasso, true_sparsity), main="Identification frequency - Simulation 2", col="blue", type="b", ylim=c(80,100))
points(snr.vec, retention_frequency(identification_lasso2, true_sparsity),  col="green", type="b")
points(snr.vec, retention_frequency(identification_RF, true_sparsity),  col = "red", type="b")

#--------------
# Prediction Plot
#---------------
plot(snr.vec, error_rate(prediction_lasso), main="MSE - Simulation 2", col="blue", type="b")
points(snr.vec, error_rate(prediction_lasso2),  col="green", type="b")
points(snr.vec, error_rate(prediction_RF), col="red", type="b")
#--------------------------------
# Simulation 1 - only LAssos
#--------------------------------

start_time <- Sys.time()

# Number of simulations
n_sim = 100
# Signal-to-noise ratios 
snr.vec = exp(seq(log(0.05),log(6),length=10))
#beta vector
beta = beta_1(p=50,s=5)
#containers to store results
retention_lasso = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
retention_lasso2 = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
retention_RF = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value

identification_lasso = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
identification_lasso2 = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
identification_RF = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value

prediction_lasso = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
prediction_lasso2 = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
prediction_RF = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value

#Simulation
for (j in 1:length(snr.vec)){
    SNR = snr.vec[j]
    for (i in 1:n_sim){
        df <- simulate(n=100, p=50, rho=0.05, beta=beta, SNR = SNR)$df 
        res_lasso = cv.lasso(data=df, beta=beta)
        retention_lasso[i, j] = res_lasso$retention   
        identification_lasso[i, j] = res_lasso$nonzero
        prediction_lasso[i, j] = res_lasso$mse
        
        res_lasso2 = cv.lasso_2(data=df, beta=beta)
        retention_lasso2[i, j] = res_lasso2$retention   
        identification_lasso2[i, j] = res_lasso2$nonzero
        prediction_lasso2[i, j] = res_lasso2$mse
        
        #res_RF = RF_VSURF(data=df, beta=beta)
        #retention_RF[i, j] = res_RF$retention   
        #identification_RF[i, j] = res_RF$identification
       # prediction_RF[i, j] = res_RF$OOB_error
        
    }
}



end_time <- Sys.time()

cat("Duration for Number of Sims = ", n_sim, "is: ", end_time - start_time)

#--------------
# Retention Plot
#---------------
true_sparsity = sum(beta)# SUM as sparsity measure not correct if true beta not binary
plot(snr.vec, retention_frequency(retention_lasso, true_sparsity), main="Retention frequency lasso - conservative", col="blue", type = "b")
lines(snr.vec, retention_frequency(retention_lasso2, true_sparsity), main="Retention frequency lasso - optimal pred", col="green", type="b")
lines(snr.vec, retention_frequency(retention_RF, true_sparsity), main="Retention frequency VSURF - prediction", col="red", type="b")

#--------------
# Nonzero Plot
#---------------

plot(snr.vec, error_rate(identification_lasso), main="Identification frequency lasso - conservative", col="blue", type="b", ylim=c(0,20))
points(snr.vec, error_rate(identification_lasso2), main="Identification frequency lasso - optimal pred", col="green", type="b", ylim=c(0,20))
points(snr.vec, error_rate(identification_RF), main="Identification frequency VSURF - prediction", col = "red", type="b")

#--------------
# Prediction Plot
#---------------
plot(snr.vec, error_rate(prediction_lasso), main="MSE lasso - conservative", col="blue", type="b")
points(snr.vec, error_rate(prediction_lasso2), main="MSE lasso - optimal pred", col="green", type="b")
points(snr.vec, error_rate(prediction_RF), main="MSE VSURF - prediction", col="red", type="b")
#--------------------------------
# Simulation 3 - beta 3
#--------------------------------

start_time <- Sys.time()

# Number of simulations
n_sim = 15
# Signal-to-noise ratios 
snr.vec = exp(seq(log(0.05),log(6),length=10))
#beta vector
beta = beta_3(p=50,s=5, value=0.5)
#containers to store results
retention_lasso = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
retention_lasso2 = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
retention_RF = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value

identification_lasso = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
identification_lasso2 = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
identification_RF = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value

prediction_lasso = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
prediction_lasso2 = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
prediction_RF = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value

#Simulation
for (j in 1:length(snr.vec)){
    SNR = snr.vec[j]
    for (i in 1:n_sim){
        df <- simulate(n=100, p=50, rho=0.5, beta=beta, SNR = SNR)$df 
        res_lasso = cv.lasso(data=df, beta=beta)
        retention_lasso[i, j] = res_lasso$retention   
        identification_lasso[i, j] = res_lasso$identification
        prediction_lasso[i, j] = res_lasso$mse
        
        res_lasso2 = cv.lasso_2(data=df, beta=beta)
        retention_lasso2[i, j] = res_lasso2$retention   
        identification_lasso2[i, j] = res_lasso2$identification
        prediction_lasso2[i, j] = res_lasso2$mse
        
        res_RF = RF_VSURF(data=df, beta=beta)
        retention_RF[i, j] = res_RF$retention   
        identification_RF[i, j] = res_RF$identification
        prediction_RF[i, j] = res_RF$OOB_error
        
    }
}

#Saving results in dataframe
sim3_retention = data.frame(cbind(t(retention_lasso), t(retention_lasso2), t(retention_RF)))
colnames(sim3_retention) = c(rep("LASSO1", n_sim), rep("LASSO2", n_sim), rep("RF_pred", n_sim))
write.csv(sim3_retention,"sim3_retention.csv", row.names = FALSE)

sim3_identification = data.frame(cbind(t(identification_lasso), t(identification_lasso2), t(identification_RF)))
colnames(sim3_identification) = c(rep("LASSO1", n_sim), rep("LASSO2", n_sim), rep("RF_pred", n_sim))
write.csv(sim3_identification,"sim3_identification.csv", row.names = FALSE)

sim3_prediction = data.frame(cbind(t(prediction_lasso), t(prediction_lasso2), t(prediction_RF)))
colnames(sim3_prediction) = c(rep("LASSO1", n_sim), rep("LASSO2", n_sim), rep("RF_pred", n_sim))
write.csv(sim3_prediction,"sim3_prediction.csv", row.names = FALSE)

end_time <- Sys.time()

cat("Duration for Number of Sims = ", n_sim, "is: ", end_time - start_time)

#--------------
# Retention Plot
#---------------
true_sparsity = sum(beta)# SUM as sparsity measure not correct if true beta not binary
plot(snr.vec, retention_frequency(retention_lasso, true_sparsity), main="Retention frequency lasso - conservative", col="blue", type = "b")
lines(snr.vec, retention_frequency(retention_lasso2, true_sparsity), main="Retention frequency lasso - optimal pred", col="green", type="b")
lines(snr.vec, retention_frequency(retention_RF, true_sparsity), main="Retention frequency VSURF - prediction", col="red", type="b")

#--------------
# Identification Plot
#---------------
true_sparsity = length(beta)# SUM as sparsity measure not correct if true beta not binary
plot(snr.vec, retention_frequency(identification_lasso, true_sparsity), main="Identification frequency lasso - conservative", col="blue", type="b", ylim=c(75,100))
points(snr.vec, retention_frequency(identification_lasso2, true_sparsity), main="Identification frequency lasso - optimal pred", col="green", type="b")
points(snr.vec, retention_frequency(identification_RF, true_sparsity), main="Identification frequency VSURF - prediction", col = "red", type="b")

#--------------
# Prediction Plot
#---------------
plot(snr.vec, error_rate(prediction_lasso), main="MSE lasso - conservative", col="blue", type="b")
points(snr.vec, error_rate(prediction_lasso2), main="MSE lasso - optimal pred", col="green", type="b")
points(snr.vec, error_rate(prediction_RF), main="MSE VSURF - prediction", col="red", type="b")
#--------------
# Retention Plot
#---------------
true_sparsity = sum(beta)# SUM as sparsity measure not correct if true beta not binary
plot(snr.vec, retention_frequency(retention_lasso, true_sparsity), main="Retention frequency lasso - conservative", col="blue", type = "b")
lines(snr.vec, retention_frequency(retention_lasso2, true_sparsity), main="Retention frequency lasso - optimal pred", col="green", type="b")
lines(snr.vec, retention_frequency(retention_RF, true_sparsity), main="Retention frequency VSURF - prediction", col="red", type="b")

#--------------
# Identification Plot
#---------------
true_sparsity = length(beta)# SUM as sparsity measure not correct if true beta not binary
plot(snr.vec, retention_frequency(identification_lasso, true_sparsity), main="Identification frequency lasso - conservative", col="blue", type="b", ylim=c(0,20))
points(snr.vec, retention_frequency(identification_lasso2, true_sparsity), main="Identification frequency lasso - optimal pred", col="green", type="b")
points(snr.vec, retention_frequency(identification_RF, true_sparsity), main="Identification frequency VSURF - prediction", col = "red", type="b")

#--------------
# Prediction Plot
#---------------
plot(snr.vec, error_rate(prediction_lasso), main="MSE lasso - conservative", col="blue", type="b")
points(snr.vec, error_rate(prediction_lasso2), main="MSE lasso - optimal pred", col="green", type="b")
points(snr.vec, error_rate(prediction_RF), main="MSE VSURF - prediction", col="red", type="b")
#--------------------------------
# Simulation 1 - trying out nonzero
#--------------------------------

start_time <- Sys.time()

# Number of simulations
n_sim = 15
# Signal-to-noise ratios 
snr.vec = exp(seq(log(0.05),log(6),length=10))
#beta vector
beta = beta_1(p=50,s=5)
#containers to store results
retention_lasso = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
retention_lasso2 = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
retention_RF = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value

identification_lasso = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
identification_lasso2 = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
identification_RF = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value

prediction_lasso = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
prediction_lasso2 = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value
prediction_RF = matrix(NaN, ncol=length(snr.vec), nrow=n_sim) # each column corresponds to SNR value

#Simulation
for (j in 1:length(snr.vec)){
    SNR = snr.vec[j]
    for (i in 1:n_sim){
        df <- simulate(n=100, p=50, rho=0.5, beta=beta, SNR = SNR)$df 
        res_lasso = cv.lasso(data=df, beta=beta)
        retention_lasso[i, j] = res_lasso$retention   
        identification_lasso[i, j] = res_lasso$nonzero
        prediction_lasso[i, j] = res_lasso$mse
        
        res_lasso2 = cv.lasso_2(data=df, beta=beta)
        retention_lasso2[i, j] = res_lasso2$retention   
        identification_lasso2[i, j] = res_lasso2$nonzero
        prediction_lasso2[i, j] = res_lasso2$mse
        
        res_RF = RF_VSURF(data=df, beta=beta)
        retention_RF[i, j] = res_RF$retention   
        identification_RF[i, j] = res_RF$nonzero
        prediction_RF[i, j] = res_RF$OOB_error
        
    }
}



end_time <- Sys.time()

cat("Duration for Number of Sims = ", n_sim, "is: ", end_time - start_time)

#--------------
# Retention Plot
#---------------
true_sparsity = sum(beta)# SUM as sparsity measure not correct if true beta not binary
plot(snr.vec, retention_frequency(retention_lasso, true_sparsity), main="Retention frequency lasso - conservative", col="blue", type = "b")
lines(snr.vec, retention_frequency(retention_lasso2, true_sparsity), main="Retention frequency lasso - optimal pred", col="green", type="b")
lines(snr.vec, retention_frequency(retention_RF, true_sparsity), main="Retention frequency VSURF - prediction", col="red", type="b")

#--------------
# Nonzero Plot
#---------------

plot(snr.vec, error_rate(identification_lasso), main="Identification frequency lasso - conservative", col="blue", type="b")
points(snr.vec, error_rate(identification_lasso2), main="Identification frequency lasso - optimal pred", col="green", type="b")
points(snr.vec, error_rate(identification_RF), main="Identification frequency VSURF - prediction", col = "red", type="b")

#--------------
# Prediction Plot
#---------------
plot(snr.vec, error_rate(prediction_lasso), main="MSE lasso - conservative", col="blue", type="b")
points(snr.vec, error_rate(prediction_lasso2), main="MSE lasso - optimal pred", col="green", type="b")
points(snr.vec, error_rate(prediction_RF), main="MSE VSURF - prediction", col="red", type="b")
#--------------
# Retention Plot
#---------------
true_sparsity = sum(beta)# SUM as sparsity measure not correct if true beta not binary
plot(snr.vec, retention_frequency(retention_lasso, true_sparsity), main="Retention frequency lasso - conservative", col="blue", type = "b")
lines(snr.vec, retention_frequency(retention_lasso2, true_sparsity), main="Retention frequency lasso - optimal pred", col="green", type="b")
lines(snr.vec, retention_frequency(retention_RF, true_sparsity), main="Retention frequency VSURF - prediction", col="red", type="b")

#--------------
# Nonzero Plot
#---------------

plot(snr.vec, error_rate(identification_lasso), main="Identification frequency lasso - conservative", col="blue", type="b", ylim=c(0, 20))
points(snr.vec, error_rate(identification_lasso2), main="Identification frequency lasso - optimal pred", col="green", type="b")
points(snr.vec, error_rate(identification_RF), main="Identification frequency VSURF - prediction", col = "red", type="b")

#--------------
# Prediction Plot
#---------------
plot(snr.vec, error_rate(prediction_lasso), main="MSE lasso - conservative", col="blue", type="b")
points(snr.vec, error_rate(prediction_lasso2), main="MSE lasso - optimal pred", col="green", type="b")
points(snr.vec, error_rate(prediction_RF), main="MSE VSURF - prediction", col="red", type="b")
#--------------------------------
# Simulation 1 - no RF
#--------------------------------

start_time <- Sys.time()

# Number of simulations
n_sim = 10
# Signal-to-noise ratios 
snr.vec = exp(seq(log(0.05),log(6),length=10))
#beta vector
beta = beta_1(p=50,s=5)
#containers to store results
colnames = c("ID_sim", "SNR", "Method", "Retention", "Nonzero", "Prediction")
results = data.frame(matrix(NaN, ncol=6, nrow=(n_sim*3*length(snr.vec))))
colnames(results) <- colnames

counter = 1

#Simulation
for (j in 1:length(snr.vec)){
    SNR = snr.vec[j]
    for (i in 1:n_sim){
        #Simulate the data
        #------------------------------
        df <- simulate(n=100, p=50, rho=0.5, beta=beta, SNR = SNR)$df
        
        ID <- j*10+i-10
        
        #calculate AND store the resuls
        #------------------------------
        #Lasso
        res_lasso = cv.lasso_2(data=df, beta=beta)
        results[counter,] <- c(ID, SNR, "Lasso", res_lasso$retention, res_lasso$nonzero, res_lasso$mse)

        counter = counter+1 #increase counter by 1
        
        #Relaxed Lasso
        #------------------------------
        res_lasso = cv.relaxed_lasso(data=df, beta=beta)
        results[counter,] <- c(ID, SNR, "Relaxed Lasso", res_lasso$retention, res_lasso$nonzero, res_lasso$mse)
        
        counter = counter+1
        
        
    }
}



end_time <- Sys.time()

cat("Duration for Number of Sims = ", n_sim, "is: ", end_time - start_time)
Duration for Number of Sims =  10 is:  2.376772
results
NA



<!-- rnb-text-end -->


<!-- rnb-chunk-begin -->


<!-- rnb-source-begin eyJkYXRhIjoiYGBgclxuIy0tLS0tLS0tLS0tLS1cbiMgQW5hbHlzaW5nIHdoeSBMYXNzbyBiZWhhdmVzIHdlaXJkbHkgZm9yIFNOUiA9IDZcbiMtLS0tLS0tLS0tLS0tXG5cbmJldGEgPSBiZXRhXzIocD0xNTAscz01KVxuI3NldC5zZWVkKDQ1NilcbnNpbSA8LSBzaW11bGF0ZShuPTEwMCwgcD0xNTAsIHJobz0wLjksIGJldGE9YmV0YSwgU05SID0gNilcbmRmIDwtIHNpbSRkZlxueCA8LSBkYXRhLm1hdHJpeChkZlssLTFdKSAjZXhwbGFuIHZhciwgZ2xtbmV0IGNhbid0IHVzZSBkYXRhZnJhbWVcbnkgPC0gZGF0YS5tYXRyaXgoZGZbLDFdKSAjZGVwZW5kZW50IHZhciwgZ2xtbmV0IGNhbid0IHVzZSBkYXRhZnJhbWVcblxub3V0MT1jdi5nbG1uZXQoeCx5LGFscGhhPTEsIGludGVyY2VwID0gRkFMU0UpXG5wbG90KG91dDEpXG5cbm91dDI9IGN2LmdsbW5ldCh4LHksIHJlbGF4PVRSVUUsIGludGVyY2VwdD1GQUxTRSkjbHBoYT0xLCBpbnRlcmNlcHQ9IEZBTFNFLCByZWxheD1UUlVFKVxucGxvdChvdXQyLCBzZS5iYW5kcz1GQUxTRSlcbmxhc3NvX2NvZWYgPSBwcmVkaWN0KG91dDIsIHR5cGUgPSBcImNvZWZmaWNpZW50c1wiLCBzID0gXCJsYW1iZGEubWluXCIsIGdhbW1hID0gXCJnYW1tYS5taW5cIilcbnZhcl9yZXRlbnRpb24obGFzc29fY29lZiwgYmV0YSlcblxubXNlIDwtIG91dDIkY3ZtW291dDIkbGFtYmRhID09IG91dDIkbGFtYmRhLjFzZV1cblxuI2NvZWYob3V0LCBzPWxhbSlcbiNwbG90KG91dCwgeHZhcj1cImxhbWJkYVwiKVxuI2N2Lm91dCA9IGN2LmdsbW5ldCh4LCB5LCBhbHBoYSA9IDEsIGludGVyY2VwdD1GQUxTRSkgIyBGaXQgbGFzc28gbW9kZWwgb24gdHJhaW5pbmcgZGF0YVxuI3Bsb3QoY3Yub3V0KSAjIERyYXcgcGxvdCBvZiB0cmFpbmluZyBNU0UgYXMgYSBmdW5jdGlvbiBvZiBsYW1iZGFcbiNsYW0gPSBjdi5vdXQkbGFtYmRhLjFzZSAjIFNlbGVjdCBtb3JlIGNvbnNlcnZhdGl2ZSBsYW1iZGEgZm9yIHZhcmlhYmxlIHNlbGVjdGlvblxuI1xuI2NhdChzaW0kc2lnbWEpXG4jbGFzc29fY29lZiA9IHByZWRpY3QoY3Yub3V0LCB0eXBlID0gXCJjb2VmZmljaWVudHNcIiwgcyA9IGxhbSkgIyBEaXNwbGF5IGNvZWZmaWNpZW50cyB1c2luZyBsYW1iZGEgY2hvc2VuIGJ5IENWXG5gYGAifQ== -->

```r
#-------------
# Analysing why Lasso behaves weirdly for SNR = 6
#-------------

beta = beta_2(p=150,s=5)
#set.seed(456)
sim <- simulate(n=100, p=150, rho=0.9, beta=beta, SNR = 6)
df <- sim$df
x <- data.matrix(df[,-1]) #explan var, glmnet can't use dataframe
y <- data.matrix(df[,1]) #dependent var, glmnet can't use dataframe

out1=cv.glmnet(x,y,alpha=1, intercep = FALSE)
plot(out1)

out2= cv.glmnet(x,y, relax=TRUE, intercept=FALSE)#lpha=1, intercept= FALSE, relax=TRUE)
plot(out2, se.bands=FALSE)
lasso_coef = predict(out2, type = "coefficients", s = "lambda.min", gamma = "gamma.min")
var_retention(lasso_coef, beta)

mse <- out2$cvm[out2$lambda == out2$lambda.1se]

#coef(out, s=lam)
#plot(out, xvar="lambda")
#cv.out = cv.glmnet(x, y, alpha = 1, intercept=FALSE) # Fit lasso model on training data
#plot(cv.out) # Draw plot of training MSE as a function of lambda
#lam = cv.out$lambda.1se # Select more conservative lambda for variable selection
#
#cat(sim$sigma)
#lasso_coef = predict(cv.out, type = "coefficients", s = lam) # Display coefficients using lambda chosen by CV
getwd()
LS0tDQp0aXRsZTogIlIgTm90ZWJvb2siDQpvdXRwdXQ6DQogIGh0bWxfbm90ZWJvb2s6IGRlZmF1bHQNCiAgcGRmX2RvY3VtZW50OiBkZWZhdWx0DQotLS0NCg0KDQoNCmBgYHtyfQ0KI0luc3RhbGxpbmcgcGFja2FnZXMjDQojaW5zdGFsbC5wYWNrYWdlcygicGFyYWxsZWwiKQ0KYGBgDQoNCkFkZCBhIG5ldyBjaHVuayBieSBjbGlja2luZyB0aGUgKkluc2VydCBDaHVuayogYnV0dG9uIG9uIHRoZSB0b29sYmFyIG9yIGJ5IHByZXNzaW5nICpDdHJsK0FsdCtJKi4NCmBgYHtyfQ0KbGlicmFyeShNQVNTKQ0KbGlicmFyeShNYXRyaXgpDQpsaWJyYXJ5KGdsbW5ldCkNCmxpYnJhcnkoUmNwcCkNCmxpYnJhcnkoVlNVUkYpDQpsaWJyYXJ5KHN0YXRzKQ0KbGlicmFyeShwYXJhbGxlbCkNCg0KbGlicmFyeShkcGx5cikNCmxpYnJhcnkoZ2dwbG90MikNCmBgYA0KDQoNCmBgYHtyfQ0KI0ltcG9ydCBhdXhpbGlhcnkgZnVuY3Rpb25zDQpzb3VyY2UoImF1eGlsaWFyeV9mdW5jdGlvbnMuUiIsIGxvY2FsPUZBTFNFKQ0KYGBgDQpgYGB7cn0NCnNldC5zZWVkKDQ1NikNCmBgYA0KDQpXaGVuIHlvdSBzYXZlIHRoZSBub3RlYm9vaywgYW4gSFRNTCBmaWxlIGNvbnRhaW5pbmcgdGhlIGNvZGUgYW5kIG91dHB1dCB3aWxsIGJlIHNhdmVkIGFsb25nc2lkZSBpdCAoY2xpY2sgdGhlICpQcmV2aWV3KiBidXR0b24gb3IgcHJlc3MgKkN0cmwrU2hpZnQrSyogdG8gcHJldmlldyB0aGUgSFRNTCBmaWxlKS4NCg0KVGhlIHByZXZpZXcgc2hvd3MgeW91IGEgcmVuZGVyZWQgSFRNTCBjb3B5IG9mIHRoZSBjb250ZW50cyBvZiB0aGUgZWRpdG9yLiBDb25zZXF1ZW50bHksIHVubGlrZSAqS25pdCosICpQcmV2aWV3KiBkb2VzIG5vdCBydW4gYW55IFIgY29kZSBjaHVua3MuIEluc3RlYWQsIHRoZSBvdXRwdXQgb2YgdGhlIGNodW5rIHdoZW4gaXQgd2FzIGxhc3QgcnVuIGluIHRoZSBlZGl0b3IgaXMgZGlzcGxheWVkLg0KYGBge3J9DQpiZXRhID0gYmV0YV8xKHA9MTAwLHM9NSkNCmRmIDwtIHNpbXVsYXRlKG49MTAwLCBwPTEwMCwgcmhvPTAuNSwgYmV0YT1iZXRhLCBTTlIgPSAxKSRkZg0KeCA8LSBkYXRhLm1hdHJpeChkZlssLTFdKSAjZXhwbGFuIHZhciwgZ2xtbmV0IGNhbid0IHVzZSBkYXRhZnJhbWUNCnkgPC0gZGF0YS5tYXRyaXgoZGZbLDFdKSAjZGVwZW5kZW50IHZhciwgZ2xtbmV0IGNhbid0IHVzZSBkYXRhZnJhbWUNCg0KY3Yub3V0ID0gY3YuZ2xtbmV0KHgsIHksIGFscGhhID0gMSwgaW50ZXJjZXB0PUZBTFNFKSAjIEZpdCBsYXNzbyBtb2RlbCBvbiB0cmFpbmluZyBkYXRhDQpwbG90KGN2Lm91dCkgIyBEcmF3IHBsb3Qgb2YgdHJhaW5pbmcgTVNFIGFzIGEgZnVuY3Rpb24gb2YgbGFtYmRhDQpsYW0gPSBjdi5vdXQkbGFtYmRhLjFzZSAjIFNlbGVjdCBtb3JlIGNvbnNlcnZhdGl2ZSBsYW1iZGEgZm9yIHZhcmlhYmxlIHNlbGVjdGlvbg0KDQoNCmxhc3NvX2NvZWYgPSBwcmVkaWN0KGN2Lm91dCwgdHlwZSA9ICJjb2VmZmljaWVudHMiLCBzID0gbGFtKSAjIERpc3BsYXkgY29lZmZpY2llbnRzIHVzaW5nIGxhbWJkYSBjaG9zZW4gYnkgQ1YNCmBgYA0KDQoNCmBgYHtyfQ0KDQpiZXRhID0gYmV0YV8yKHA9NTAscz01KQ0KZGYgPC0gc2ltdWxhdGUobj0xMDAsIHA9NTAsIHJobz0wLjUsIGJldGE9YmV0YSwgU05SID0gMSkkZGYNCnJlc3VsdCA9IFJGX1ZTVVJGKGRhdGE9ZGYsIGJldGE9YmV0YSkNCg0KYGBgDQoNCg0KDQoNCg0KDQpgYGB7cn0NClJGX1ZTVVJGIDwtIGZ1bmN0aW9uKGRhdGEsICNkYXRhIGZyYW1lIC0gZGVwZW5kZW50IHZhcmlhYmxlIGZpcnN0DQogICAgICAgICAgICAgICAgICAgICBiZXRhICN0cnVlIGNvZWZmaWNpZW50cw0KKXsNCiAgIy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQogICMgVXNlcyBWU1VSRiBwcmVkaWN0aW9uIHVuZGVyIHBhcmFsbGVsaXphdGlvbiBhbmQNCiAgIyByZXR1cm5zIG51bWJlciBvZiBjb3JyZWN0bHkgaWRlbnRpZmllZCAgc2lnbmlmaWNhbnQgdmFyaWFibGVzLg0KICAjIE15dHJlZSBhbmQgbnRyZWUgYXJlIHNldCB0byBkZWZhdWx0DQogICMgLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLSANCiAgeCA8LSBkYXRhLm1hdHJpeChkYXRhWywtMV0pICNleHBsYW4gdmFyLCBnbG1uZXQgY2FuJ3QgdXNlIGRhdGFmcmFtZQ0KICB5IDwtIGRhdGEubWF0cml4KGRhdGFbLDFdKSAjZGVwZW5kZW50IHZhciwgZ2xtbmV0IGNhbid0IHVzZSBkYXRhZnJhbWUNCiAgDQogIGRlZmF1bHRXIDwtIGdldE9wdGlvbigid2FybiIpICAjVHVybiBvZmYgd2FybmluZyBtZXNzYWdlcw0KICBvcHRpb25zKHdhcm4gPSAtMSkgDQogIA0KDQogICNWYXJpYWJsZSBTZWxlY3Rpb24gdXNpbmcgUmFuZG9tIEZvcmVzdA0KICBtb2RlbC52c3VyZiA8LSBWU1VSRih4PXgsIHk9eSwgcGFyYWxsZWwgPSBUUlVFICwgbmNvcmVzPSA0KQ0KICANCiAgb3B0aW9ucyh3YXJuID0gZGVmYXVsdFcpICNyZS1lbmFibGUgd2FybmluZyBtZXNzYWdlcw0KDQogICMtLS0tLS0tLS0tLS0tLS0tLS0tLS0NCiAgIyBSZXRlbnRpb24gRnJlcXVlbmN5DQogICMtLS0tLS0tLS0tLS0tLS0tLS0tLS0NCiAgI0NyZWF0ZSBib29saWFuIHZlY3RvciBvZiBzZWxlY3RlZCBjb2VmZmljaWVudHMNCiAgbG9jID0gbW9kZWwudnN1cmYkdmFyc2VsZWN0LnByZWQgIyBsb2NhdGlvbiBvZiBzaWduaWZpY2FudCBjb2VmZmljaWVudHMNCiAgZXN0aW1fdmFyID0gcmVwKDAsIGxlbmd0aChiZXRhKSkgI2NyZWF0ZSB6ZXJvIHZlY3RvciBvZiBjb3JyZWN0IGxlbmd0aA0KICBlc3RpbV92YXJbbG9jXSA9IDEgI3BvcHVsYXRlIHplcm8gdmVjdG9yDQogIA0KICByZXRlbnRpb24gPSB2YXJfcmV0ZW50aW9uKGVzdGltX3ZhciwgYmV0YSkgI2NvdW50cyBvbmx5IHNpZ25pZmljYW50IHZhcmlhYmxlcw0KICBpZGVudGlmaWNhdGlvbiA9IHZhcl9pZGVudGlmaWNhdGlvbihlc3RpbV92YXIsIGJldGEpICNjb3VudHMgYWxsIHZhcnMNCg0KICAjLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQogICMgTnVtYmVyIE5vbnplcm8gZWxlbWVudHMNCiAgIy0tLS0tLS0tLS0tLS0tLS0tLS0tLSANCiAgbm9uemVybyA9IHZhcl9ub256ZXJvKGVzdGltX3ZhciwgYmV0YSkgI2NvdW50IG5vbnplcm8gdmFycw0KICANCiAgIy0tLS0tLS0tLS0tLS0tLS0tLS0tLQ0KICAjIE9PQiBlcnJvcg0KICAjLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQogIE9PQl9lcnJvciA9IG1pbihtb2RlbC52c3VyZiRlcnIucHJlZCkgIyBWU1VSRiByZXR1cm5zIGEgdmVjdG9yLCBmaW5hbCBlbGVtZW50IGlzIChtaW5pbWFsKSBPT0IgZXJyb3IgYW5kIGluY2x1ZGVzIGFsbCAhcHJlZGljdGlvbiEgdmFyaWFibGVzDQogIA0KICByZXN1bHQgPSBsaXN0KCJyZXRlbnRpb24iID0gcmV0ZW50aW9uLCAiaWRlbnRpZmljYXRpb24iID0gaWRlbnRpZmljYXRpb24sICJPT0JfZXJyb3IiID0gT09CX2Vycm9yLCAibm9uemVybyIgPSBub256ZXJvKQ0KICANCiAgcmV0dXJuKHJlc3VsdCkNCn0NCiAgDQoNCmBgYA0KDQoNCg0KDQoNCg0KDQoNCmBgYHtyfQ0KY3YubGFzc29fMiA8LSBmdW5jdGlvbihkYXRhLCAjZGF0YSBmcmFtZSAtIGRlcGVuZGVudCB2YXJpYWJsZSBmaXJzdA0KICAgICAgICAgICAgICAgICAgICAgYmV0YSAjIHRydWUgY29lZmZpY2llbnRzDQopew0KICAjLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0NCiAgIyBVc2VzIDEwIGZvbGQgQ1YgYW5kIHVzZXMgYmVzdCBwcmVkaWNpdG9uIGxhbWJkYQ0KICAjIGFzIGVzdGltYXRlIGZvciB2YXJpYWJsZSBzZWxlY3Rpb24NCiAgIyAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQogIHggPC0gZGF0YS5tYXRyaXgoZGF0YVssLTFdKSAjZXhwbGFuIHZhciwgZ2xtbmV0IGNhbid0IHVzZSBkYXRhZnJhbWUNCiAgeSA8LSBkYXRhLm1hdHJpeChkYXRhWywxXSkgI2RlcGVuZGVudCB2YXIsIGdsbW5ldCBjYW4ndCB1c2UgZGF0YWZyYW1lDQogIA0KICBjdi5vdXQgPSBjdi5nbG1uZXQoeCwgeSwgYWxwaGEgPSAxLCBpbnRlcmNlcHQ9RkFMU0UpICMgRml0IGxhc3NvIG1vZGVsIG9uIHRyYWluaW5nIGRhdGENCiAgI2xhbSA9IGN2Lm91dCRsYW1iZGEuMXNlICMgU2VsZWN0IG1vcmUgY29uc2VydmF0aXZlIGxhbWJkYSBmb3IgdmFyaWFibGUgc2VsZWN0aW9uDQogIGxhbSA9IGN2Lm91dCRsYW1iZGEubWluDQogIA0KICAjLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQogICMgUmV0ZW50aW9uIEZyZXF1ZW5jeQ0KICAjLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQogIGxhc3NvX2NvZWYgPSBwcmVkaWN0KGN2Lm91dCwgdHlwZSA9ICJjb2VmZmljaWVudHMiLCBzID0gbGFtKSAjIERpc3BsYXkgY29lZmZpY2llbnRzIHVzaW5nIGxhbWJkYSBjaG9zZW4gYnkgQ1YNCiAgcmV0ZW50aW9uID0gdmFyX3JldGVudGlvbihsYXNzb19jb2VmLCBiZXRhKSAjY291bnRzIHNpZ25pZmljYW50IHZhcnMNCiAgaWRlbnRpZmljYXRpb24gPSB2YXJfaWRlbnRpZmljYXRpb24obGFzc29fY29lZiwgYmV0YSkgI2NvdW50cyBhbGwgdmFycw0KDQogICMtLS0tLS0tLS0tLS0tLS0tLS0tLS0NCiAgIyBOdW1iZXIgTm9uemVybyBlbGVtZW50cw0KICAjLS0tLS0tLS0tLS0tLS0tLS0tLS0tIA0KICBub256ZXJvID0gdmFyX25vbnplcm8obGFzc29fY29lZiwgYmV0YSkgI2NvdW50IG5vbnplcm8gdmFycw0KICANCiAgIy0tLS0tLS0tLS0tLS0tLS0tLS0tLQ0KICAjIE1TRQ0KICAjLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQogIG1zZSA8LSBjdi5vdXQkY3ZtW2N2Lm91dCRsYW1iZGEgPT0gY3Yub3V0JGxhbWJkYS4xc2VdDQogIA0KICANCiAgcmVzdWx0cyA9IGxpc3QoInJldGVudGlvbiIgPSByZXRlbnRpb24sICJpZGVudGlmaWNhdGlvbiIgPWlkZW50aWZpY2F0aW9uLCAibXNlIiA9IG1zZSwgIm5vbnplcm8iID0gbm9uemVybykNCiAgcmV0dXJuKHJlc3VsdHMpDQp9DQpgYGANCg0KDQpgYGB7cn0NCmN2LnJlbGF4ZWRfbGFzc28gPC0gZnVuY3Rpb24oZGF0YSwgI2RhdGEgZnJhbWUgLSBkZXBlbmRlbnQgdmFyaWFibGUgZmlyc3QNCiAgICAgICAgICAgICAgICAgICAgIGJldGEgIyB0cnVlIGNvZWZmaWNpZW50cw0KKXsNCiAgIy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQogICMgVXNlcyAxMCBmb2xkIENWIGFuZCB1c2VzIGxhbWJkYQ0KICAjIGFuZCBnYW1tYSBtaW5pbWl6aW5nIHByZWRpY3Rpb24gZXJyb3INCiAgIyBmb3IgdmFyaWFibGUgc2VsZWN0aW9uDQogICMgLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQ0KICB4IDwtIGRhdGEubWF0cml4KGRhdGFbLC0xXSkgI2V4cGxhbiB2YXIsIGdsbW5ldCBjYW4ndCB1c2UgZGF0YWZyYW1lDQogIHkgPC0gZGF0YS5tYXRyaXgoZGF0YVssMV0pICNkZXBlbmRlbnQgdmFyLCBnbG1uZXQgY2FuJ3QgdXNlIGRhdGFmcmFtZQ0KICANCiAgY3Yub3V0ID0gY3YuZ2xtbmV0KHgsIHksaW50ZXJjZXB0PUZBTFNFLCByZWxheD1UUlVFKSAjIEZpdCBsYXNzbyBtb2RlbCBvbiB0cmFpbmluZyBkYXRhDQoNCiAgIy0tLS0tLS0tLS0tLS0tLS0tLS0tLQ0KICAjIFJldGVudGlvbiBGcmVxdWVuY3kNCiAgIy0tLS0tLS0tLS0tLS0tLS0tLS0tLQ0KICBsYXNzb19jb2VmID0gcHJlZGljdChjdi5vdXQsIHR5cGUgPSAiY29lZmZpY2llbnRzIiwgcyA9ICJsYW1iZGEubWluIiwgZ2FtbWEgPSAiZ2FtbWEubWluIikjImdhbW1hLm1pbiIpICMgRGlzcGxheSBjb2VmZmljaWVudHMgdXNpbmcgbGFtYmRhIGNob3NlbiBieSBDVg0KICByZXRlbnRpb24gPSB2YXJfcmV0ZW50aW9uKGxhc3NvX2NvZWYsIGJldGEpICNjb3VudHMgc2lnbmlmaWNhbnQgdmFycw0KICBpZGVudGlmaWNhdGlvbiA9IHZhcl9pZGVudGlmaWNhdGlvbihsYXNzb19jb2VmLCBiZXRhKSAjY291bnRzIGFsbCB2YXJzDQoNCiAgIy0tLS0tLS0tLS0tLS0tLS0tLS0tLQ0KICAjIE51bWJlciBOb256ZXJvIGVsZW1lbnRzDQogICMtLS0tLS0tLS0tLS0tLS0tLS0tLS0gDQogIG5vbnplcm8gPSB2YXJfbm9uemVybyhsYXNzb19jb2VmLCBiZXRhKSAjY291bnQgbm9uemVybyB2YXJzDQogIA0KICAjLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQogICMgTVNFDQogICMtLS0tLS0tLS0tLS0tLS0tLS0tLS0NCiAgbXNlIDwtIGN2Lm91dCRjdm1bY3Yub3V0JGxhbWJkYSA9PSBjdi5vdXQkbGFtYmRhLjFzZV0gIyB3aGljaCBnYW1tYSB2YWx1ZSBpcyB0aGlzPw0KICANCiAgDQogIHJlc3VsdHMgPSBsaXN0KCJyZXRlbnRpb24iID0gcmV0ZW50aW9uLCAiaWRlbnRpZmljYXRpb24iID1pZGVudGlmaWNhdGlvbiwgIm1zZSIgPSBtc2UsICJub256ZXJvIiA9IG5vbnplcm8pDQogIHJldHVybihyZXN1bHRzKQ0KICANCn0NCmBgYA0KDQoNCg0KDQoNCmBgYHtyfQ0KIy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQojIFNpbXVsYXRpb24gMQ0KIy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQpzZXQuc2VlZCg0NTYpDQoNCnN0YXJ0X3RpbWUgPC0gU3lzLnRpbWUoKQ0KDQojIFNpbXVsYXRpb24gUGFyYW1ldGVycw0KIy0tLS0tLS0tLS0tLS0tLS0tLS0tLQ0Kbl9zaW0gPSAxMDAgIyBOdW1iZXIgb2Ygc2ltdWxhdGlvbnMNCnNuci52ZWMgPSBleHAoc2VxKGxvZygwLjA1KSxsb2coNiksbGVuZ3RoPTEwKSkgIyBTaWduYWwtdG8tbm9pc2UgcmF0aW9zIA0KYmV0YSA9IGJldGFfMShwPTUwLHM9NSkgIyBiZXRhIHZlY3Rvcg0KDQojQ29udGFpbmVyIHRvIHN0b3JlIHJlc3VsdHMNCiMtLS0tLS0tLS0tLS0tLS0tLS0tLS0NCmNvbG5hbWVzID0gYygiSURfc2ltIiwgIlNOUiIsICJNZXRob2QiLCAiUmV0ZW50aW9uIiwgIk5vbnplcm8iLCAiUHJlZGljdGlvbiIpDQpyZXN1bHRzID0gZGF0YS5mcmFtZShtYXRyaXgoTmFOLCBuY29sPTYsIG5yb3c9KG5fc2ltKjMqbGVuZ3RoKHNuci52ZWMpKSkpDQpjb2xuYW1lcyhyZXN1bHRzKSA8LSBjb2xuYW1lcw0KDQojIEluaXRpYWxpemUgQ291bnRlcg0KY291bnRlciA8LSAxDQoNCiNTaW11bGF0aW9uDQpmb3IgKGogaW4gMTpsZW5ndGgoc25yLnZlYykpew0KICBTTlIgPSBzbnIudmVjW2pdDQogIGZvciAoaSBpbiAxOm5fc2ltKXsNCg0KICAgICNTaW11bGF0ZSB0aGUgZGF0YQ0KICAgICMtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0NCiAgICBkZiA8LSBzaW11bGF0ZShuPTEwMCwgcD01MCwgcmhvPTAuNSwgYmV0YT1iZXRhLCBTTlIgPSBTTlIpJGRmDQogICAgDQogICAgSUQgPC0gcGFzdGUoaixpKSAjaWRlbnRpZmljYXRpb24gdG91cGxlIG9mIHNpbXVsYXRpb24NCiAgICANCiAgICAjY2FsY3VsYXRlIEFORCBzdG9yZSB0aGUgcmVzdWxzDQogICAgIy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQ0KICAgICNMYXNzbw0KICAgIHJlc19sYXNzbyA9IGN2Lmxhc3NvXzIoZGF0YT1kZiwgYmV0YT1iZXRhKQ0KICAgIHJlc3VsdHNbY291bnRlcixdIDwtIGMoSUQsIFNOUiwgIkxhc3NvIiwgcmVzX2xhc3NvJHJldGVudGlvbiwgcmVzX2xhc3NvJG5vbnplcm8sIHJlc19sYXNzbyRtc2UpDQogICAgDQogICAgY291bnRlciA9IGNvdW50ZXIrMSAjaW5jcmVhc2UgY291bnRlciBieSAxDQogICAgDQogICAgI1JlbGF4ZCBMYXNzbw0KICAgIHJlc19sYXNzbyA9IGN2LnJlbGF4ZWRfbGFzc28oZGF0YT1kZiwgYmV0YT1iZXRhKQ0KICAgIHJlc3VsdHNbY291bnRlcixdIDwtIGMoSUQsIFNOUiwgIlJlbGF4ZWQgTGFzc28iLCByZXNfbGFzc28kcmV0ZW50aW9uLCByZXNfbGFzc28kbm9uemVybywgcmVzX2xhc3NvJG1zZSkNCiAgICANCiAgICBjb3VudGVyID0gY291bnRlcisxICNpbmNyZWFzZSBjb3VudGVyIGJ5IDENCiAgICAgICAgDQogICAgI1JhbmRvbSBGb3Jlc3QgICANCiAgICByZXNfUkYgPSBSRl9WU1VSRihkYXRhPWRmLCBiZXRhPWJldGEpDQogICAgcmVzdWx0c1tjb3VudGVyLF0gPC0gYyhJRCwgU05SLCAiUkYiLCByZXNfUkYkcmV0ZW50aW9uLCByZXNfUkYkbm9uemVybywgcmVzX1JGJE9PQl9lcnJvcikNCiAgICANCiAgICBjb3VudGVyID0gY291bnRlcisxICNpbmNyZWFzZSBjb3VudGVyIGJ5IDENCiAgICANCiAgICAjU2F2ZSByZXN1bHRzDQogICAgIy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQ0KICAgIHdyaXRlLmNzdihyZXN1bHRzLCJzaW0xLmNzdiIsIHJvdy5uYW1lcyA9IEZBTFNFKQ0KICAgIA0KICB9DQp9DQoNCmVuZF90aW1lIDwtIFN5cy50aW1lKCkNCg0KY2F0KCJEdXJhdGlvbiBmb3IgTnVtYmVyIG9mIFNpbXMgPSAiLCBuX3NpbSwgImlzOiAiLCBlbmRfdGltZSAtIHN0YXJ0X3RpbWUpDQoNCg0KYGBgDQoNCmBgYHtyfQ0Kc2ltMSA8LSByZWFkLmNzdigic2ltMS5jc3YiLCBoZWFkZXI9VFJVRSkNClZpZXcoc2ltMSkNCmBgYA0KDQoNCg0KYGBge3J9DQpkZiA8LSBzaW0xICU+JSANCiAgbmFfaWYoSW5mKSAlPiUNCiAgZ3JvdXBfYnkoU05SLCBNZXRob2QpICU+JSAgDQogIHN1bW1hcml6ZShNZWFuX1JldCA9IG1lYW4oUmV0ZW50aW9uLCBuYS5ybT1UUlVFKSwNCiAgICAgICAgICAgIE1lYW5fWmVybyA9IG1lYW4oTm9uemVybywgbmEucm09VFJVRSksDQogICAgICAgICAgICBNZWFuX1ByZWQgPSBtZWFuKFByZWRpY3Rpb24sIG5hLnJtPVRSVUUpKQ0KDQpzbnIuYnJlYWtzID0gcm91bmQoZXhwKHNlcShmcm9tPW1pbihsb2coc2ltMSRTTlIpKSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgIHRvPW1heChsb2coc2ltMSRTTlIpKSxsZW5ndGg9NCkpLDIpDQoNCmdncGxvdChkYXRhPWRmLCBhZXMoeD1TTlIsIHk9TWVhbl9SZXQsIGNvbG9yPU1ldGhvZCkpICsNCiAgZ2VvbV9saW5lKGx3ZD0xKSArDQogIGdlb21fcG9pbnQocGNoPTE5KSArDQogIHRoZW1lX2J3KCkgKw0KICAjZmFjZXRfZ3JpZChyb3dzID0gdmFycyhNZXRob2QpKSArDQogICNmYWNldF9ncmlkKGZvcm11bGEocGFzdGUoMSwifiIsMikpKSArDQogIHhsYWIoIlNpZ25hbC10by1ub2lzZSByYXRpbyIpICsNCiAgeWxhYigiUmV0ZW50aW9uIikgKw0KICBnZW9tX2xpbmUoYWVzKHg9U05SLCB5PTUpLCBsd2Q9MC41LCBsaW5ldHlwZT0zLCBjb2xvcj0iYmxhY2siKSArDQogIGdndGl0bGUoIlNpbXVsYXRpb24gMSIpICsgDQogIHNjYWxlX3hfY29udGludW91cyh0cmFucz0ibG9nIiwgYnJlYWtzPXNuci5icmVha3MpDQoNCg0KZ2dwbG90KGRhdGE9ZGYsIGFlcyh4PVNOUiwgeT1NZWFuX1plcm8sIGNvbG9yPU1ldGhvZCkpICsNCiAgZ2VvbV9saW5lKGx3ZD0xKSArDQogIGdlb21fcG9pbnQocGNoPTE5KSArDQogIHRoZW1lX2J3KCkgKw0KICAjZmFjZXRfZ3JpZChyb3dzID0gdmFycyhNZXRob2QpKSArDQogICNmYWNldF9ncmlkKGZvcm11bGEocGFzdGUoMSwifiIsMikpKSArDQogIHhsYWIoIlNpZ25hbC10by1ub2lzZSByYXRpbyIpICsNCiAgeWxhYigiTnVtYmVyIG5vbnplcm8gY29lZmZpY2llbnRzIikgKw0KICBnZW9tX2xpbmUoYWVzKHg9U05SLCB5PTUpLCBsd2Q9MC41LCBsaW5ldHlwZT0zLCBjb2xvcj0iYmxhY2siKSArDQogIGdndGl0bGUoIlNpbXVsYXRpb24gMSIpICsgDQogIHNjYWxlX3hfY29udGludW91cyh0cmFucz0ibG9nIiwgYnJlYWtzPXNuci5icmVha3MpDQoNCg0KZ2dwbG90KGRhdGE9ZGYsIGFlcyh4PVNOUiwgeT1NZWFuX1ByZWQsIGNvbG9yPU1ldGhvZCkpICsNCiAgZ2VvbV9saW5lKGx3ZD0xKSArDQogIGdlb21fcG9pbnQocGNoPTE5KSArDQogIHRoZW1lX2J3KCkgKw0KICAjZmFjZXRfZ3JpZChyb3dzID0gdmFycyhNZXRob2QpKSArDQogICNmYWNldF9ncmlkKGZvcm11bGEocGFzdGUoMSwifiIsMikpKSArDQogIHhsYWIoIlNpZ25hbC10by1ub2lzZSByYXRpbyIpICsNCiAgeWxhYigiUHJlZGljdGlvbiBFcnJvciIpICsNCiAgZ2VvbV9saW5lKGFlcyh4PVNOUiwgeT01KSwgbHdkPTAuNSwgbGluZXR5cGU9MywgY29sb3I9ImJsYWNrIikgKw0KICBnZ3RpdGxlKCJTaW11bGF0aW9uIDEiKSArIA0KICBzY2FsZV94X2NvbnRpbnVvdXModHJhbnM9ImxvZyIsIGJyZWFrcz1zbnIuYnJlYWtzKQ0KYGBgDQoNCg0KDQoNCg0KDQpgYGB7cn0NCiMtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQ0KIyBTaW11bGF0aW9uIDIuYSAtIGNoYW5naW5nIGNvcnJlbGF0aW9uIGJ5IGNoYW5naW5nIGJldGENCiMtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQ0Kc2V0LnNlZWQoNDU2KQ0KDQpzdGFydF90aW1lIDwtIFN5cy50aW1lKCkNCg0KIyBTaW11bGF0aW9uIFBhcmFtZXRlcnMNCiMtLS0tLS0tLS0tLS0tLS0tLS0tLS0NCm5fc2ltID0gMTAwICMgTnVtYmVyIG9mIHNpbXVsYXRpb25zDQpzbnIudmVjID0gZXhwKHNlcShsb2coMC4wNSksbG9nKDYpLGxlbmd0aD0xMCkpICMgU2lnbmFsLXRvLW5vaXNlIHJhdGlvcyANCmJldGEgPSBiZXRhXzIocD01MCxzPTUpICMgYmV0YSB2ZWN0b3INCg0KI0NvbnRhaW5lciB0byBzdG9yZSByZXN1bHRzDQojLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQpjb2xuYW1lcyA9IGMoIklEX3NpbSIsICJTTlIiLCAiTWV0aG9kIiwgIlJldGVudGlvbiIsICJOb256ZXJvIiwgIlByZWRpY3Rpb24iKQ0KcmVzdWx0cyA9IGRhdGEuZnJhbWUobWF0cml4KE5hTiwgbmNvbD02LCBucm93PShuX3NpbSozKmxlbmd0aChzbnIudmVjKSkpKQ0KY29sbmFtZXMocmVzdWx0cykgPC0gY29sbmFtZXMNCg0KIyBJbml0aWFsaXplIENvdW50ZXINCmNvdW50ZXIgPC0gMQ0KDQojU2ltdWxhdGlvbg0KZm9yIChqIGluIDE6bGVuZ3RoKHNuci52ZWMpKXsNCiAgU05SID0gc25yLnZlY1tqXQ0KICBmb3IgKGkgaW4gMTpuX3NpbSl7DQoNCiAgICAjU2ltdWxhdGUgdGhlIGRhdGENCiAgICAjLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQogICAgZGYgPC0gc2ltdWxhdGUobj0xMDAsIHA9NTAsIHJobz0wLjUsIGJldGE9YmV0YSwgU05SID0gU05SKSRkZg0KICAgIA0KICAgIElEIDwtIHBhc3RlKGosaSkgI2lkZW50aWZpY2F0aW9uIHRvdXBsZSBvZiBzaW11bGF0aW9uDQogICAgDQogICAgI2NhbGN1bGF0ZSBBTkQgc3RvcmUgdGhlIHJlc3Vscw0KICAgICMtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0NCiAgICAjTGFzc28NCiAgICByZXNfbGFzc28gPSBjdi5sYXNzb18yKGRhdGE9ZGYsIGJldGE9YmV0YSkNCiAgICByZXN1bHRzW2NvdW50ZXIsXSA8LSBjKElELCBTTlIsICJMYXNzbyIsIHJlc19sYXNzbyRyZXRlbnRpb24sIHJlc19sYXNzbyRub256ZXJvLCByZXNfbGFzc28kbXNlKQ0KICAgIA0KICAgIGNvdW50ZXIgPSBjb3VudGVyKzEgI2luY3JlYXNlIGNvdW50ZXIgYnkgMQ0KICAgIA0KICAgICNSZWxheGQgTGFzc28NCiAgICByZXNfbGFzc28gPSBjdi5yZWxheGVkX2xhc3NvKGRhdGE9ZGYsIGJldGE9YmV0YSkNCiAgICByZXN1bHRzW2NvdW50ZXIsXSA8LSBjKElELCBTTlIsICJSZWxheGVkIExhc3NvIiwgcmVzX2xhc3NvJHJldGVudGlvbiwgcmVzX2xhc3NvJG5vbnplcm8sIHJlc19sYXNzbyRtc2UpDQogICAgDQogICAgY291bnRlciA9IGNvdW50ZXIrMSAjaW5jcmVhc2UgY291bnRlciBieSAxDQogICAgICAgIA0KICAgICNSYW5kb20gRm9yZXN0ICAgDQogICAgcmVzX1JGID0gUkZfVlNVUkYoZGF0YT1kZiwgYmV0YT1iZXRhKQ0KICAgIHJlc3VsdHNbY291bnRlcixdIDwtIGMoSUQsIFNOUiwgIlJGIiwgcmVzX1JGJHJldGVudGlvbiwgcmVzX1JGJG5vbnplcm8sIHJlc19SRiRPT0JfZXJyb3IpDQogICAgDQogICAgY291bnRlciA9IGNvdW50ZXIrMSAjaW5jcmVhc2UgY291bnRlciBieSAxDQogICAgDQogICAgI1NhdmUgcmVzdWx0cw0KICAgICMtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0NCiAgICB3cml0ZS5jc3YocmVzdWx0cywic2ltMmEuY3N2Iiwgcm93Lm5hbWVzID0gRkFMU0UpDQogICAgDQogIH0NCn0NCg0KZW5kX3RpbWUgPC0gU3lzLnRpbWUoKQ0KDQpjYXQoIkR1cmF0aW9uIGZvciBOdW1iZXIgb2YgU2ltcyA9ICIsIG5fc2ltLCAiaXM6ICIsIGVuZF90aW1lIC0gc3RhcnRfdGltZSkNCg0KIy0tLS0tLS0tLS0tLS0tLQ0Kc2ltMmEgPC0gcmVhZC5jc3YoInNpbTJhLmNzdiIsIGhlYWRlcj1UUlVFKQ0KDQpkZiA8LSBzaW0yYSAlPiUgDQogIG5hX2lmKEluZikgJT4lDQogIGdyb3VwX2J5KFNOUiwgTWV0aG9kKSAlPiUgIA0KICBzdW1tYXJpemUoTWVhbl9SZXQgPSBtZWFuKFJldGVudGlvbiwgbmEucm09VFJVRSksDQogICAgICAgICAgICBNZWFuX1plcm8gPSBtZWFuKE5vbnplcm8sIG5hLnJtPVRSVUUpLA0KICAgICAgICAgICAgTWVhbl9QcmVkID0gbWVhbihQcmVkaWN0aW9uLCBuYS5ybT1UUlVFKSkNCg0Kc25yLmJyZWFrcyA9IHJvdW5kKGV4cChzZXEoZnJvbT1taW4obG9nKHNpbTEkU05SKSksDQogICAgICAgICAgICAgICAgICAgICAgICAgICB0bz1tYXgobG9nKHNpbTEkU05SKSksbGVuZ3RoPTQpKSwyKQ0KDQpnZ3Bsb3QoZGF0YT1kZiwgYWVzKHg9U05SLCB5PU1lYW5fUmV0LCBjb2xvcj1NZXRob2QpKSArDQogIGdlb21fbGluZShsd2Q9MSkgKw0KICBnZW9tX3BvaW50KHBjaD0xOSkgKw0KICB0aGVtZV9idygpICsNCiAgI2ZhY2V0X2dyaWQocm93cyA9IHZhcnMoTWV0aG9kKSkgKw0KICAjZmFjZXRfZ3JpZChmb3JtdWxhKHBhc3RlKDEsIn4iLDIpKSkgKw0KICB4bGFiKCJTaWduYWwtdG8tbm9pc2UgcmF0aW8iKSArDQogIHlsYWIoIlJldGVudGlvbiIpICsNCiAgZ2VvbV9saW5lKGFlcyh4PVNOUiwgeT01KSwgbHdkPTAuNSwgbGluZXR5cGU9MywgY29sb3I9ImJsYWNrIikgKw0KICBnZ3RpdGxlKCJTaW11bGF0aW9uIDEiKSArIA0KICBzY2FsZV94X2NvbnRpbnVvdXModHJhbnM9ImxvZyIsIGJyZWFrcz1zbnIuYnJlYWtzKQ0KDQoNCmdncGxvdChkYXRhPWRmLCBhZXMoeD1TTlIsIHk9TWVhbl9aZXJvLCBjb2xvcj1NZXRob2QpKSArDQogIGdlb21fbGluZShsd2Q9MSkgKw0KICBnZW9tX3BvaW50KHBjaD0xOSkgKw0KICB0aGVtZV9idygpICsNCiAgI2ZhY2V0X2dyaWQocm93cyA9IHZhcnMoTWV0aG9kKSkgKw0KICAjZmFjZXRfZ3JpZChmb3JtdWxhKHBhc3RlKDEsIn4iLDIpKSkgKw0KICB4bGFiKCJTaWduYWwtdG8tbm9pc2UgcmF0aW8iKSArDQogIHlsYWIoIk51bWJlciBub256ZXJvIGNvZWZmaWNpZW50cyIpICsNCiAgZ2VvbV9saW5lKGFlcyh4PVNOUiwgeT01KSwgbHdkPTAuNSwgbGluZXR5cGU9MywgY29sb3I9ImJsYWNrIikgKw0KICBnZ3RpdGxlKCJTaW11bGF0aW9uIDEiKSArIA0KICBzY2FsZV94X2NvbnRpbnVvdXModHJhbnM9ImxvZyIsIGJyZWFrcz1zbnIuYnJlYWtzKQ0KDQoNCmdncGxvdChkYXRhPWRmLCBhZXMoeD1TTlIsIHk9TWVhbl9QcmVkLCBjb2xvcj1NZXRob2QpKSArDQogIGdlb21fbGluZShsd2Q9MSkgKw0KICBnZW9tX3BvaW50KHBjaD0xOSkgKw0KICB0aGVtZV9idygpICsNCiAgI2ZhY2V0X2dyaWQocm93cyA9IHZhcnMoTWV0aG9kKSkgKw0KICAjZmFjZXRfZ3JpZChmb3JtdWxhKHBhc3RlKDEsIn4iLDIpKSkgKw0KICB4bGFiKCJTaWduYWwtdG8tbm9pc2UgcmF0aW8iKSArDQogIHlsYWIoIlByZWRpY3Rpb24gRXJyb3IiKSArDQogIGdlb21fbGluZShhZXMoeD1TTlIsIHk9NSksIGx3ZD0wLjUsIGxpbmV0eXBlPTMsIGNvbG9yPSJibGFjayIpICsNCiAgZ2d0aXRsZSgiU2ltdWxhdGlvbiAxIikgKyANCiAgc2NhbGVfeF9jb250aW51b3VzKHRyYW5zPSJsb2ciLCBicmVha3M9c25yLmJyZWFrcykNCg0KYGBgDQoNCg0KYGBge3J9DQojLS0tLS0tLS0tLS0tLS0NCiMgUmV0ZW50aW9uIFBsb3QNCiMtLS0tLS0tLS0tLS0tLS0NCnRydWVfc3BhcnNpdHkgPSBzdW0oYmV0YSkjIFNVTSBhcyBzcGFyc2l0eSBtZWFzdXJlIG5vdCBjb3JyZWN0IGlmIHRydWUgYmV0YSBub3QgYmluYXJ5DQpwbG90KHNuci52ZWMsIHJldGVudGlvbl9mcmVxdWVuY3kocmV0ZW50aW9uX2xhc3NvLCB0cnVlX3NwYXJzaXR5KSwgbWFpbj0iUmV0ZW50aW9uIGZyZXF1ZW5jeSAtIFNpbXVsYXRpb24gMiIsIGNvbD0iYmx1ZSIsIHR5cGUgPSAiYiIpDQpsaW5lcyhzbnIudmVjLCByZXRlbnRpb25fZnJlcXVlbmN5KHJldGVudGlvbl9sYXNzbzIsIHRydWVfc3BhcnNpdHkpLCBjb2w9ImdyZWVuIiwgdHlwZT0iYiIpDQpsaW5lcyhzbnIudmVjLCByZXRlbnRpb25fZnJlcXVlbmN5KHJldGVudGlvbl9SRiwgdHJ1ZV9zcGFyc2l0eSksIGNvbD0icmVkIiwgdHlwZT0iYiIpDQoNCiMtLS0tLS0tLS0tLS0tLQ0KIyBJZGVudGlmaWNhdGlvbiBQbG90DQojLS0tLS0tLS0tLS0tLS0tDQp0cnVlX3NwYXJzaXR5ID0gbGVuZ3RoKGJldGEpIyBTVU0gYXMgc3BhcnNpdHkgbWVhc3VyZSBub3QgY29ycmVjdCBpZiB0cnVlIGJldGEgbm90IGJpbmFyeQ0KcGxvdChzbnIudmVjLCByZXRlbnRpb25fZnJlcXVlbmN5KGlkZW50aWZpY2F0aW9uX2xhc3NvLCB0cnVlX3NwYXJzaXR5KSwgbWFpbj0iSWRlbnRpZmljYXRpb24gZnJlcXVlbmN5IC0gU2ltdWxhdGlvbiAyIiwgY29sPSJibHVlIiwgdHlwZT0iYiIsIHlsaW09Yyg4MCwxMDApKQ0KcG9pbnRzKHNuci52ZWMsIHJldGVudGlvbl9mcmVxdWVuY3koaWRlbnRpZmljYXRpb25fbGFzc28yLCB0cnVlX3NwYXJzaXR5KSwgIGNvbD0iZ3JlZW4iLCB0eXBlPSJiIikNCnBvaW50cyhzbnIudmVjLCByZXRlbnRpb25fZnJlcXVlbmN5KGlkZW50aWZpY2F0aW9uX1JGLCB0cnVlX3NwYXJzaXR5KSwgIGNvbCA9ICJyZWQiLCB0eXBlPSJiIikNCg0KIy0tLS0tLS0tLS0tLS0tDQojIFByZWRpY3Rpb24gUGxvdA0KIy0tLS0tLS0tLS0tLS0tLQ0KcGxvdChzbnIudmVjLCBlcnJvcl9yYXRlKHByZWRpY3Rpb25fbGFzc28pLCBtYWluPSJNU0UgLSBTaW11bGF0aW9uIDIiLCBjb2w9ImJsdWUiLCB0eXBlPSJiIikNCnBvaW50cyhzbnIudmVjLCBlcnJvcl9yYXRlKHByZWRpY3Rpb25fbGFzc28yKSwgIGNvbD0iZ3JlZW4iLCB0eXBlPSJiIikNCnBvaW50cyhzbnIudmVjLCBlcnJvcl9yYXRlKHByZWRpY3Rpb25fUkYpLCBjb2w9InJlZCIsIHR5cGU9ImIiKQ0KYGBgDQoNCg0KDQpgYGB7cn0NCiMtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQ0KIyBTaW11bGF0aW9uIDEgLSBvbmx5IExBc3Nvcw0KIy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQoNCnN0YXJ0X3RpbWUgPC0gU3lzLnRpbWUoKQ0KDQojIE51bWJlciBvZiBzaW11bGF0aW9ucw0Kbl9zaW0gPSAxMDANCiMgU2lnbmFsLXRvLW5vaXNlIHJhdGlvcyANCnNuci52ZWMgPSBleHAoc2VxKGxvZygwLjA1KSxsb2coNiksbGVuZ3RoPTEwKSkNCiNiZXRhIHZlY3Rvcg0KYmV0YSA9IGJldGFfMShwPTUwLHM9NSkNCiNjb250YWluZXJzIHRvIHN0b3JlIHJlc3VsdHMNCnJldGVudGlvbl9sYXNzbyA9IG1hdHJpeChOYU4sIG5jb2w9bGVuZ3RoKHNuci52ZWMpLCBucm93PW5fc2ltKSAjIGVhY2ggY29sdW1uIGNvcnJlc3BvbmRzIHRvIFNOUiB2YWx1ZQ0KcmV0ZW50aW9uX2xhc3NvMiA9IG1hdHJpeChOYU4sIG5jb2w9bGVuZ3RoKHNuci52ZWMpLCBucm93PW5fc2ltKSAjIGVhY2ggY29sdW1uIGNvcnJlc3BvbmRzIHRvIFNOUiB2YWx1ZQ0KcmV0ZW50aW9uX1JGID0gbWF0cml4KE5hTiwgbmNvbD1sZW5ndGgoc25yLnZlYyksIG5yb3c9bl9zaW0pICMgZWFjaCBjb2x1bW4gY29ycmVzcG9uZHMgdG8gU05SIHZhbHVlDQoNCmlkZW50aWZpY2F0aW9uX2xhc3NvID0gbWF0cml4KE5hTiwgbmNvbD1sZW5ndGgoc25yLnZlYyksIG5yb3c9bl9zaW0pICMgZWFjaCBjb2x1bW4gY29ycmVzcG9uZHMgdG8gU05SIHZhbHVlDQppZGVudGlmaWNhdGlvbl9sYXNzbzIgPSBtYXRyaXgoTmFOLCBuY29sPWxlbmd0aChzbnIudmVjKSwgbnJvdz1uX3NpbSkgIyBlYWNoIGNvbHVtbiBjb3JyZXNwb25kcyB0byBTTlIgdmFsdWUNCmlkZW50aWZpY2F0aW9uX1JGID0gbWF0cml4KE5hTiwgbmNvbD1sZW5ndGgoc25yLnZlYyksIG5yb3c9bl9zaW0pICMgZWFjaCBjb2x1bW4gY29ycmVzcG9uZHMgdG8gU05SIHZhbHVlDQoNCnByZWRpY3Rpb25fbGFzc28gPSBtYXRyaXgoTmFOLCBuY29sPWxlbmd0aChzbnIudmVjKSwgbnJvdz1uX3NpbSkgIyBlYWNoIGNvbHVtbiBjb3JyZXNwb25kcyB0byBTTlIgdmFsdWUNCnByZWRpY3Rpb25fbGFzc28yID0gbWF0cml4KE5hTiwgbmNvbD1sZW5ndGgoc25yLnZlYyksIG5yb3c9bl9zaW0pICMgZWFjaCBjb2x1bW4gY29ycmVzcG9uZHMgdG8gU05SIHZhbHVlDQpwcmVkaWN0aW9uX1JGID0gbWF0cml4KE5hTiwgbmNvbD1sZW5ndGgoc25yLnZlYyksIG5yb3c9bl9zaW0pICMgZWFjaCBjb2x1bW4gY29ycmVzcG9uZHMgdG8gU05SIHZhbHVlDQoNCiNTaW11bGF0aW9uDQpmb3IgKGogaW4gMTpsZW5ndGgoc25yLnZlYykpew0KICAgIFNOUiA9IHNuci52ZWNbal0NCiAgICBmb3IgKGkgaW4gMTpuX3NpbSl7DQogICAgICAgIGRmIDwtIHNpbXVsYXRlKG49MTAwLCBwPTUwLCByaG89MC4wNSwgYmV0YT1iZXRhLCBTTlIgPSBTTlIpJGRmIA0KICAgICAgICByZXNfbGFzc28gPSBjdi5sYXNzbyhkYXRhPWRmLCBiZXRhPWJldGEpDQogICAgICAgIHJldGVudGlvbl9sYXNzb1tpLCBqXSA9IHJlc19sYXNzbyRyZXRlbnRpb24gICANCiAgICAgICAgaWRlbnRpZmljYXRpb25fbGFzc29baSwgal0gPSByZXNfbGFzc28kbm9uemVybw0KICAgICAgICBwcmVkaWN0aW9uX2xhc3NvW2ksIGpdID0gcmVzX2xhc3NvJG1zZQ0KICAgICAgICANCiAgICAgICAgcmVzX2xhc3NvMiA9IGN2Lmxhc3NvXzIoZGF0YT1kZiwgYmV0YT1iZXRhKQ0KICAgICAgICByZXRlbnRpb25fbGFzc28yW2ksIGpdID0gcmVzX2xhc3NvMiRyZXRlbnRpb24gICANCiAgICAgICAgaWRlbnRpZmljYXRpb25fbGFzc28yW2ksIGpdID0gcmVzX2xhc3NvMiRub256ZXJvDQogICAgICAgIHByZWRpY3Rpb25fbGFzc28yW2ksIGpdID0gcmVzX2xhc3NvMiRtc2UNCiAgICAgICAgDQogICAgICAgICNyZXNfUkYgPSBSRl9WU1VSRihkYXRhPWRmLCBiZXRhPWJldGEpDQogICAgICAgICNyZXRlbnRpb25fUkZbaSwgal0gPSByZXNfUkYkcmV0ZW50aW9uICAgDQogICAgICAgICNpZGVudGlmaWNhdGlvbl9SRltpLCBqXSA9IHJlc19SRiRpZGVudGlmaWNhdGlvbg0KICAgICAgICMgcHJlZGljdGlvbl9SRltpLCBqXSA9IHJlc19SRiRPT0JfZXJyb3INCiAgICAgICAgDQogICAgfQ0KfQ0KDQoNCg0KZW5kX3RpbWUgPC0gU3lzLnRpbWUoKQ0KDQpjYXQoIkR1cmF0aW9uIGZvciBOdW1iZXIgb2YgU2ltcyA9ICIsIG5fc2ltLCAiaXM6ICIsIGVuZF90aW1lIC0gc3RhcnRfdGltZSkNCg0KIy0tLS0tLS0tLS0tLS0tDQojIFJldGVudGlvbiBQbG90DQojLS0tLS0tLS0tLS0tLS0tDQp0cnVlX3NwYXJzaXR5ID0gc3VtKGJldGEpIyBTVU0gYXMgc3BhcnNpdHkgbWVhc3VyZSBub3QgY29ycmVjdCBpZiB0cnVlIGJldGEgbm90IGJpbmFyeQ0KcGxvdChzbnIudmVjLCByZXRlbnRpb25fZnJlcXVlbmN5KHJldGVudGlvbl9sYXNzbywgdHJ1ZV9zcGFyc2l0eSksIG1haW49IlJldGVudGlvbiBmcmVxdWVuY3kgbGFzc28gLSBjb25zZXJ2YXRpdmUiLCBjb2w9ImJsdWUiLCB0eXBlID0gImIiKQ0KbGluZXMoc25yLnZlYywgcmV0ZW50aW9uX2ZyZXF1ZW5jeShyZXRlbnRpb25fbGFzc28yLCB0cnVlX3NwYXJzaXR5KSwgbWFpbj0iUmV0ZW50aW9uIGZyZXF1ZW5jeSBsYXNzbyAtIG9wdGltYWwgcHJlZCIsIGNvbD0iZ3JlZW4iLCB0eXBlPSJiIikNCmxpbmVzKHNuci52ZWMsIHJldGVudGlvbl9mcmVxdWVuY3kocmV0ZW50aW9uX1JGLCB0cnVlX3NwYXJzaXR5KSwgbWFpbj0iUmV0ZW50aW9uIGZyZXF1ZW5jeSBWU1VSRiAtIHByZWRpY3Rpb24iLCBjb2w9InJlZCIsIHR5cGU9ImIiKQ0KDQojLS0tLS0tLS0tLS0tLS0NCiMgTm9uemVybyBQbG90DQojLS0tLS0tLS0tLS0tLS0tDQoNCnBsb3Qoc25yLnZlYywgZXJyb3JfcmF0ZShpZGVudGlmaWNhdGlvbl9sYXNzbyksIG1haW49IklkZW50aWZpY2F0aW9uIGZyZXF1ZW5jeSBsYXNzbyAtIGNvbnNlcnZhdGl2ZSIsIGNvbD0iYmx1ZSIsIHR5cGU9ImIiLCB5bGltPWMoMCwyMCkpDQpwb2ludHMoc25yLnZlYywgZXJyb3JfcmF0ZShpZGVudGlmaWNhdGlvbl9sYXNzbzIpLCBtYWluPSJJZGVudGlmaWNhdGlvbiBmcmVxdWVuY3kgbGFzc28gLSBvcHRpbWFsIHByZWQiLCBjb2w9ImdyZWVuIiwgdHlwZT0iYiIsIHlsaW09YygwLDIwKSkNCnBvaW50cyhzbnIudmVjLCBlcnJvcl9yYXRlKGlkZW50aWZpY2F0aW9uX1JGKSwgbWFpbj0iSWRlbnRpZmljYXRpb24gZnJlcXVlbmN5IFZTVVJGIC0gcHJlZGljdGlvbiIsIGNvbCA9ICJyZWQiLCB0eXBlPSJiIikNCg0KIy0tLS0tLS0tLS0tLS0tDQojIFByZWRpY3Rpb24gUGxvdA0KIy0tLS0tLS0tLS0tLS0tLQ0KcGxvdChzbnIudmVjLCBlcnJvcl9yYXRlKHByZWRpY3Rpb25fbGFzc28pLCBtYWluPSJNU0UgbGFzc28gLSBjb25zZXJ2YXRpdmUiLCBjb2w9ImJsdWUiLCB0eXBlPSJiIikNCnBvaW50cyhzbnIudmVjLCBlcnJvcl9yYXRlKHByZWRpY3Rpb25fbGFzc28yKSwgbWFpbj0iTVNFIGxhc3NvIC0gb3B0aW1hbCBwcmVkIiwgY29sPSJncmVlbiIsIHR5cGU9ImIiKQ0KcG9pbnRzKHNuci52ZWMsIGVycm9yX3JhdGUocHJlZGljdGlvbl9SRiksIG1haW49Ik1TRSBWU1VSRiAtIHByZWRpY3Rpb24iLCBjb2w9InJlZCIsIHR5cGU9ImIiKQ0KYGBgDQoNCmBgYHtyfQ0KIy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQojIFNpbXVsYXRpb24gMyAtIGJldGEgMw0KIy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQoNCnN0YXJ0X3RpbWUgPC0gU3lzLnRpbWUoKQ0KDQojIE51bWJlciBvZiBzaW11bGF0aW9ucw0Kbl9zaW0gPSAxNQ0KIyBTaWduYWwtdG8tbm9pc2UgcmF0aW9zIA0Kc25yLnZlYyA9IGV4cChzZXEobG9nKDAuMDUpLGxvZyg2KSxsZW5ndGg9MTApKQ0KI2JldGEgdmVjdG9yDQpiZXRhID0gYmV0YV8zKHA9NTAscz01LCB2YWx1ZT0wLjUpDQojY29udGFpbmVycyB0byBzdG9yZSByZXN1bHRzDQpyZXRlbnRpb25fbGFzc28gPSBtYXRyaXgoTmFOLCBuY29sPWxlbmd0aChzbnIudmVjKSwgbnJvdz1uX3NpbSkgIyBlYWNoIGNvbHVtbiBjb3JyZXNwb25kcyB0byBTTlIgdmFsdWUNCnJldGVudGlvbl9sYXNzbzIgPSBtYXRyaXgoTmFOLCBuY29sPWxlbmd0aChzbnIudmVjKSwgbnJvdz1uX3NpbSkgIyBlYWNoIGNvbHVtbiBjb3JyZXNwb25kcyB0byBTTlIgdmFsdWUNCnJldGVudGlvbl9SRiA9IG1hdHJpeChOYU4sIG5jb2w9bGVuZ3RoKHNuci52ZWMpLCBucm93PW5fc2ltKSAjIGVhY2ggY29sdW1uIGNvcnJlc3BvbmRzIHRvIFNOUiB2YWx1ZQ0KDQppZGVudGlmaWNhdGlvbl9sYXNzbyA9IG1hdHJpeChOYU4sIG5jb2w9bGVuZ3RoKHNuci52ZWMpLCBucm93PW5fc2ltKSAjIGVhY2ggY29sdW1uIGNvcnJlc3BvbmRzIHRvIFNOUiB2YWx1ZQ0KaWRlbnRpZmljYXRpb25fbGFzc28yID0gbWF0cml4KE5hTiwgbmNvbD1sZW5ndGgoc25yLnZlYyksIG5yb3c9bl9zaW0pICMgZWFjaCBjb2x1bW4gY29ycmVzcG9uZHMgdG8gU05SIHZhbHVlDQppZGVudGlmaWNhdGlvbl9SRiA9IG1hdHJpeChOYU4sIG5jb2w9bGVuZ3RoKHNuci52ZWMpLCBucm93PW5fc2ltKSAjIGVhY2ggY29sdW1uIGNvcnJlc3BvbmRzIHRvIFNOUiB2YWx1ZQ0KDQpwcmVkaWN0aW9uX2xhc3NvID0gbWF0cml4KE5hTiwgbmNvbD1sZW5ndGgoc25yLnZlYyksIG5yb3c9bl9zaW0pICMgZWFjaCBjb2x1bW4gY29ycmVzcG9uZHMgdG8gU05SIHZhbHVlDQpwcmVkaWN0aW9uX2xhc3NvMiA9IG1hdHJpeChOYU4sIG5jb2w9bGVuZ3RoKHNuci52ZWMpLCBucm93PW5fc2ltKSAjIGVhY2ggY29sdW1uIGNvcnJlc3BvbmRzIHRvIFNOUiB2YWx1ZQ0KcHJlZGljdGlvbl9SRiA9IG1hdHJpeChOYU4sIG5jb2w9bGVuZ3RoKHNuci52ZWMpLCBucm93PW5fc2ltKSAjIGVhY2ggY29sdW1uIGNvcnJlc3BvbmRzIHRvIFNOUiB2YWx1ZQ0KDQojU2ltdWxhdGlvbg0KZm9yIChqIGluIDE6bGVuZ3RoKHNuci52ZWMpKXsNCiAgICBTTlIgPSBzbnIudmVjW2pdDQogICAgZm9yIChpIGluIDE6bl9zaW0pew0KICAgICAgICBkZiA8LSBzaW11bGF0ZShuPTEwMCwgcD01MCwgcmhvPTAuNSwgYmV0YT1iZXRhLCBTTlIgPSBTTlIpJGRmIA0KICAgICAgICByZXNfbGFzc28gPSBjdi5sYXNzbyhkYXRhPWRmLCBiZXRhPWJldGEpDQogICAgICAgIHJldGVudGlvbl9sYXNzb1tpLCBqXSA9IHJlc19sYXNzbyRyZXRlbnRpb24gICANCiAgICAgICAgaWRlbnRpZmljYXRpb25fbGFzc29baSwgal0gPSByZXNfbGFzc28kaWRlbnRpZmljYXRpb24NCiAgICAgICAgcHJlZGljdGlvbl9sYXNzb1tpLCBqXSA9IHJlc19sYXNzbyRtc2UNCiAgICAgICAgDQogICAgICAgIHJlc19sYXNzbzIgPSBjdi5sYXNzb18yKGRhdGE9ZGYsIGJldGE9YmV0YSkNCiAgICAgICAgcmV0ZW50aW9uX2xhc3NvMltpLCBqXSA9IHJlc19sYXNzbzIkcmV0ZW50aW9uICAgDQogICAgICAgIGlkZW50aWZpY2F0aW9uX2xhc3NvMltpLCBqXSA9IHJlc19sYXNzbzIkaWRlbnRpZmljYXRpb24NCiAgICAgICAgcHJlZGljdGlvbl9sYXNzbzJbaSwgal0gPSByZXNfbGFzc28yJG1zZQ0KICAgICAgICANCiAgICAgICAgcmVzX1JGID0gUkZfVlNVUkYoZGF0YT1kZiwgYmV0YT1iZXRhKQ0KICAgICAgICByZXRlbnRpb25fUkZbaSwgal0gPSByZXNfUkYkcmV0ZW50aW9uICAgDQogICAgICAgIGlkZW50aWZpY2F0aW9uX1JGW2ksIGpdID0gcmVzX1JGJGlkZW50aWZpY2F0aW9uDQogICAgICAgIHByZWRpY3Rpb25fUkZbaSwgal0gPSByZXNfUkYkT09CX2Vycm9yDQogICAgICAgIA0KICAgIH0NCn0NCg0KI1NhdmluZyByZXN1bHRzIGluIGRhdGFmcmFtZQ0Kc2ltM19yZXRlbnRpb24gPSBkYXRhLmZyYW1lKGNiaW5kKHQocmV0ZW50aW9uX2xhc3NvKSwgdChyZXRlbnRpb25fbGFzc28yKSwgdChyZXRlbnRpb25fUkYpKSkNCmNvbG5hbWVzKHNpbTNfcmV0ZW50aW9uKSA9IGMocmVwKCJMQVNTTzEiLCBuX3NpbSksIHJlcCgiTEFTU08yIiwgbl9zaW0pLCByZXAoIlJGX3ByZWQiLCBuX3NpbSkpDQp3cml0ZS5jc3Yoc2ltM19yZXRlbnRpb24sInNpbTNfcmV0ZW50aW9uLmNzdiIsIHJvdy5uYW1lcyA9IEZBTFNFKQ0KDQpzaW0zX2lkZW50aWZpY2F0aW9uID0gZGF0YS5mcmFtZShjYmluZCh0KGlkZW50aWZpY2F0aW9uX2xhc3NvKSwgdChpZGVudGlmaWNhdGlvbl9sYXNzbzIpLCB0KGlkZW50aWZpY2F0aW9uX1JGKSkpDQpjb2xuYW1lcyhzaW0zX2lkZW50aWZpY2F0aW9uKSA9IGMocmVwKCJMQVNTTzEiLCBuX3NpbSksIHJlcCgiTEFTU08yIiwgbl9zaW0pLCByZXAoIlJGX3ByZWQiLCBuX3NpbSkpDQp3cml0ZS5jc3Yoc2ltM19pZGVudGlmaWNhdGlvbiwic2ltM19pZGVudGlmaWNhdGlvbi5jc3YiLCByb3cubmFtZXMgPSBGQUxTRSkNCg0Kc2ltM19wcmVkaWN0aW9uID0gZGF0YS5mcmFtZShjYmluZCh0KHByZWRpY3Rpb25fbGFzc28pLCB0KHByZWRpY3Rpb25fbGFzc28yKSwgdChwcmVkaWN0aW9uX1JGKSkpDQpjb2xuYW1lcyhzaW0zX3ByZWRpY3Rpb24pID0gYyhyZXAoIkxBU1NPMSIsIG5fc2ltKSwgcmVwKCJMQVNTTzIiLCBuX3NpbSksIHJlcCgiUkZfcHJlZCIsIG5fc2ltKSkNCndyaXRlLmNzdihzaW0zX3ByZWRpY3Rpb24sInNpbTNfcHJlZGljdGlvbi5jc3YiLCByb3cubmFtZXMgPSBGQUxTRSkNCg0KZW5kX3RpbWUgPC0gU3lzLnRpbWUoKQ0KDQpjYXQoIkR1cmF0aW9uIGZvciBOdW1iZXIgb2YgU2ltcyA9ICIsIG5fc2ltLCAiaXM6ICIsIGVuZF90aW1lIC0gc3RhcnRfdGltZSkNCg0KIy0tLS0tLS0tLS0tLS0tDQojIFJldGVudGlvbiBQbG90DQojLS0tLS0tLS0tLS0tLS0tDQp0cnVlX3NwYXJzaXR5ID0gc3VtKGJldGEpIyBTVU0gYXMgc3BhcnNpdHkgbWVhc3VyZSBub3QgY29ycmVjdCBpZiB0cnVlIGJldGEgbm90IGJpbmFyeQ0KcGxvdChzbnIudmVjLCByZXRlbnRpb25fZnJlcXVlbmN5KHJldGVudGlvbl9sYXNzbywgdHJ1ZV9zcGFyc2l0eSksIG1haW49IlJldGVudGlvbiBmcmVxdWVuY3kgbGFzc28gLSBjb25zZXJ2YXRpdmUiLCBjb2w9ImJsdWUiLCB0eXBlID0gImIiKQ0KbGluZXMoc25yLnZlYywgcmV0ZW50aW9uX2ZyZXF1ZW5jeShyZXRlbnRpb25fbGFzc28yLCB0cnVlX3NwYXJzaXR5KSwgbWFpbj0iUmV0ZW50aW9uIGZyZXF1ZW5jeSBsYXNzbyAtIG9wdGltYWwgcHJlZCIsIGNvbD0iZ3JlZW4iLCB0eXBlPSJiIikNCmxpbmVzKHNuci52ZWMsIHJldGVudGlvbl9mcmVxdWVuY3kocmV0ZW50aW9uX1JGLCB0cnVlX3NwYXJzaXR5KSwgbWFpbj0iUmV0ZW50aW9uIGZyZXF1ZW5jeSBWU1VSRiAtIHByZWRpY3Rpb24iLCBjb2w9InJlZCIsIHR5cGU9ImIiKQ0KDQojLS0tLS0tLS0tLS0tLS0NCiMgSWRlbnRpZmljYXRpb24gUGxvdA0KIy0tLS0tLS0tLS0tLS0tLQ0KdHJ1ZV9zcGFyc2l0eSA9IGxlbmd0aChiZXRhKSMgU1VNIGFzIHNwYXJzaXR5IG1lYXN1cmUgbm90IGNvcnJlY3QgaWYgdHJ1ZSBiZXRhIG5vdCBiaW5hcnkNCnBsb3Qoc25yLnZlYywgcmV0ZW50aW9uX2ZyZXF1ZW5jeShpZGVudGlmaWNhdGlvbl9sYXNzbywgdHJ1ZV9zcGFyc2l0eSksIG1haW49IklkZW50aWZpY2F0aW9uIGZyZXF1ZW5jeSBsYXNzbyAtIGNvbnNlcnZhdGl2ZSIsIGNvbD0iYmx1ZSIsIHR5cGU9ImIiLCB5bGltPWMoNzUsMTAwKSkNCnBvaW50cyhzbnIudmVjLCByZXRlbnRpb25fZnJlcXVlbmN5KGlkZW50aWZpY2F0aW9uX2xhc3NvMiwgdHJ1ZV9zcGFyc2l0eSksIG1haW49IklkZW50aWZpY2F0aW9uIGZyZXF1ZW5jeSBsYXNzbyAtIG9wdGltYWwgcHJlZCIsIGNvbD0iZ3JlZW4iLCB0eXBlPSJiIikNCnBvaW50cyhzbnIudmVjLCByZXRlbnRpb25fZnJlcXVlbmN5KGlkZW50aWZpY2F0aW9uX1JGLCB0cnVlX3NwYXJzaXR5KSwgbWFpbj0iSWRlbnRpZmljYXRpb24gZnJlcXVlbmN5IFZTVVJGIC0gcHJlZGljdGlvbiIsIGNvbCA9ICJyZWQiLCB0eXBlPSJiIikNCg0KIy0tLS0tLS0tLS0tLS0tDQojIFByZWRpY3Rpb24gUGxvdA0KIy0tLS0tLS0tLS0tLS0tLQ0KcGxvdChzbnIudmVjLCBlcnJvcl9yYXRlKHByZWRpY3Rpb25fbGFzc28pLCBtYWluPSJNU0UgbGFzc28gLSBjb25zZXJ2YXRpdmUiLCBjb2w9ImJsdWUiLCB0eXBlPSJiIikNCnBvaW50cyhzbnIudmVjLCBlcnJvcl9yYXRlKHByZWRpY3Rpb25fbGFzc28yKSwgbWFpbj0iTVNFIGxhc3NvIC0gb3B0aW1hbCBwcmVkIiwgY29sPSJncmVlbiIsIHR5cGU9ImIiKQ0KcG9pbnRzKHNuci52ZWMsIGVycm9yX3JhdGUocHJlZGljdGlvbl9SRiksIG1haW49Ik1TRSBWU1VSRiAtIHByZWRpY3Rpb24iLCBjb2w9InJlZCIsIHR5cGU9ImIiKQ0KYGBgDQoNCmBgYHtyfQ0KIy0tLS0tLS0tLS0tLS0tDQojIFJldGVudGlvbiBQbG90DQojLS0tLS0tLS0tLS0tLS0tDQp0cnVlX3NwYXJzaXR5ID0gc3VtKGJldGEpIyBTVU0gYXMgc3BhcnNpdHkgbWVhc3VyZSBub3QgY29ycmVjdCBpZiB0cnVlIGJldGEgbm90IGJpbmFyeQ0KcGxvdChzbnIudmVjLCByZXRlbnRpb25fZnJlcXVlbmN5KHJldGVudGlvbl9sYXNzbywgdHJ1ZV9zcGFyc2l0eSksIG1haW49IlJldGVudGlvbiBmcmVxdWVuY3kgbGFzc28gLSBjb25zZXJ2YXRpdmUiLCBjb2w9ImJsdWUiLCB0eXBlID0gImIiKQ0KbGluZXMoc25yLnZlYywgcmV0ZW50aW9uX2ZyZXF1ZW5jeShyZXRlbnRpb25fbGFzc28yLCB0cnVlX3NwYXJzaXR5KSwgbWFpbj0iUmV0ZW50aW9uIGZyZXF1ZW5jeSBsYXNzbyAtIG9wdGltYWwgcHJlZCIsIGNvbD0iZ3JlZW4iLCB0eXBlPSJiIikNCmxpbmVzKHNuci52ZWMsIHJldGVudGlvbl9mcmVxdWVuY3kocmV0ZW50aW9uX1JGLCB0cnVlX3NwYXJzaXR5KSwgbWFpbj0iUmV0ZW50aW9uIGZyZXF1ZW5jeSBWU1VSRiAtIHByZWRpY3Rpb24iLCBjb2w9InJlZCIsIHR5cGU9ImIiKQ0KDQojLS0tLS0tLS0tLS0tLS0NCiMgSWRlbnRpZmljYXRpb24gUGxvdA0KIy0tLS0tLS0tLS0tLS0tLQ0KdHJ1ZV9zcGFyc2l0eSA9IGxlbmd0aChiZXRhKSMgU1VNIGFzIHNwYXJzaXR5IG1lYXN1cmUgbm90IGNvcnJlY3QgaWYgdHJ1ZSBiZXRhIG5vdCBiaW5hcnkNCnBsb3Qoc25yLnZlYywgcmV0ZW50aW9uX2ZyZXF1ZW5jeShpZGVudGlmaWNhdGlvbl9sYXNzbywgdHJ1ZV9zcGFyc2l0eSksIG1haW49IklkZW50aWZpY2F0aW9uIGZyZXF1ZW5jeSBsYXNzbyAtIGNvbnNlcnZhdGl2ZSIsIGNvbD0iYmx1ZSIsIHR5cGU9ImIiLCB5bGltPWMoMCwyMCkpDQpwb2ludHMoc25yLnZlYywgcmV0ZW50aW9uX2ZyZXF1ZW5jeShpZGVudGlmaWNhdGlvbl9sYXNzbzIsIHRydWVfc3BhcnNpdHkpLCBtYWluPSJJZGVudGlmaWNhdGlvbiBmcmVxdWVuY3kgbGFzc28gLSBvcHRpbWFsIHByZWQiLCBjb2w9ImdyZWVuIiwgdHlwZT0iYiIpDQpwb2ludHMoc25yLnZlYywgcmV0ZW50aW9uX2ZyZXF1ZW5jeShpZGVudGlmaWNhdGlvbl9SRiwgdHJ1ZV9zcGFyc2l0eSksIG1haW49IklkZW50aWZpY2F0aW9uIGZyZXF1ZW5jeSBWU1VSRiAtIHByZWRpY3Rpb24iLCBjb2wgPSAicmVkIiwgdHlwZT0iYiIpDQoNCiMtLS0tLS0tLS0tLS0tLQ0KIyBQcmVkaWN0aW9uIFBsb3QNCiMtLS0tLS0tLS0tLS0tLS0NCnBsb3Qoc25yLnZlYywgZXJyb3JfcmF0ZShwcmVkaWN0aW9uX2xhc3NvKSwgbWFpbj0iTVNFIGxhc3NvIC0gY29uc2VydmF0aXZlIiwgY29sPSJibHVlIiwgdHlwZT0iYiIpDQpwb2ludHMoc25yLnZlYywgZXJyb3JfcmF0ZShwcmVkaWN0aW9uX2xhc3NvMiksIG1haW49Ik1TRSBsYXNzbyAtIG9wdGltYWwgcHJlZCIsIGNvbD0iZ3JlZW4iLCB0eXBlPSJiIikNCnBvaW50cyhzbnIudmVjLCBlcnJvcl9yYXRlKHByZWRpY3Rpb25fUkYpLCBtYWluPSJNU0UgVlNVUkYgLSBwcmVkaWN0aW9uIiwgY29sPSJyZWQiLCB0eXBlPSJiIikNCmBgYA0KDQoNCmBgYHtyfQ0KIy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQojIFNpbXVsYXRpb24gMSAtIHRyeWluZyBvdXQgbm9uemVybw0KIy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQoNCnN0YXJ0X3RpbWUgPC0gU3lzLnRpbWUoKQ0KDQojIE51bWJlciBvZiBzaW11bGF0aW9ucw0Kbl9zaW0gPSAxNQ0KIyBTaWduYWwtdG8tbm9pc2UgcmF0aW9zIA0Kc25yLnZlYyA9IGV4cChzZXEobG9nKDAuMDUpLGxvZyg2KSxsZW5ndGg9MTApKQ0KI2JldGEgdmVjdG9yDQpiZXRhID0gYmV0YV8xKHA9NTAscz01KQ0KI2NvbnRhaW5lcnMgdG8gc3RvcmUgcmVzdWx0cw0KcmV0ZW50aW9uX2xhc3NvID0gbWF0cml4KE5hTiwgbmNvbD1sZW5ndGgoc25yLnZlYyksIG5yb3c9bl9zaW0pICMgZWFjaCBjb2x1bW4gY29ycmVzcG9uZHMgdG8gU05SIHZhbHVlDQpyZXRlbnRpb25fbGFzc28yID0gbWF0cml4KE5hTiwgbmNvbD1sZW5ndGgoc25yLnZlYyksIG5yb3c9bl9zaW0pICMgZWFjaCBjb2x1bW4gY29ycmVzcG9uZHMgdG8gU05SIHZhbHVlDQpyZXRlbnRpb25fUkYgPSBtYXRyaXgoTmFOLCBuY29sPWxlbmd0aChzbnIudmVjKSwgbnJvdz1uX3NpbSkgIyBlYWNoIGNvbHVtbiBjb3JyZXNwb25kcyB0byBTTlIgdmFsdWUNCg0KaWRlbnRpZmljYXRpb25fbGFzc28gPSBtYXRyaXgoTmFOLCBuY29sPWxlbmd0aChzbnIudmVjKSwgbnJvdz1uX3NpbSkgIyBlYWNoIGNvbHVtbiBjb3JyZXNwb25kcyB0byBTTlIgdmFsdWUNCmlkZW50aWZpY2F0aW9uX2xhc3NvMiA9IG1hdHJpeChOYU4sIG5jb2w9bGVuZ3RoKHNuci52ZWMpLCBucm93PW5fc2ltKSAjIGVhY2ggY29sdW1uIGNvcnJlc3BvbmRzIHRvIFNOUiB2YWx1ZQ0KaWRlbnRpZmljYXRpb25fUkYgPSBtYXRyaXgoTmFOLCBuY29sPWxlbmd0aChzbnIudmVjKSwgbnJvdz1uX3NpbSkgIyBlYWNoIGNvbHVtbiBjb3JyZXNwb25kcyB0byBTTlIgdmFsdWUNCg0KcHJlZGljdGlvbl9sYXNzbyA9IG1hdHJpeChOYU4sIG5jb2w9bGVuZ3RoKHNuci52ZWMpLCBucm93PW5fc2ltKSAjIGVhY2ggY29sdW1uIGNvcnJlc3BvbmRzIHRvIFNOUiB2YWx1ZQ0KcHJlZGljdGlvbl9sYXNzbzIgPSBtYXRyaXgoTmFOLCBuY29sPWxlbmd0aChzbnIudmVjKSwgbnJvdz1uX3NpbSkgIyBlYWNoIGNvbHVtbiBjb3JyZXNwb25kcyB0byBTTlIgdmFsdWUNCnByZWRpY3Rpb25fUkYgPSBtYXRyaXgoTmFOLCBuY29sPWxlbmd0aChzbnIudmVjKSwgbnJvdz1uX3NpbSkgIyBlYWNoIGNvbHVtbiBjb3JyZXNwb25kcyB0byBTTlIgdmFsdWUNCg0KI1NpbXVsYXRpb24NCmZvciAoaiBpbiAxOmxlbmd0aChzbnIudmVjKSl7DQogICAgU05SID0gc25yLnZlY1tqXQ0KICAgIGZvciAoaSBpbiAxOm5fc2ltKXsNCiAgICAgICAgZGYgPC0gc2ltdWxhdGUobj0xMDAsIHA9NTAsIHJobz0wLjUsIGJldGE9YmV0YSwgU05SID0gU05SKSRkZiANCiAgICAgICAgcmVzX2xhc3NvID0gY3YubGFzc28oZGF0YT1kZiwgYmV0YT1iZXRhKQ0KICAgICAgICByZXRlbnRpb25fbGFzc29baSwgal0gPSByZXNfbGFzc28kcmV0ZW50aW9uICAgDQogICAgICAgIGlkZW50aWZpY2F0aW9uX2xhc3NvW2ksIGpdID0gcmVzX2xhc3NvJG5vbnplcm8NCiAgICAgICAgcHJlZGljdGlvbl9sYXNzb1tpLCBqXSA9IHJlc19sYXNzbyRtc2UNCiAgICAgICAgDQogICAgICAgIHJlc19sYXNzbzIgPSBjdi5sYXNzb18yKGRhdGE9ZGYsIGJldGE9YmV0YSkNCiAgICAgICAgcmV0ZW50aW9uX2xhc3NvMltpLCBqXSA9IHJlc19sYXNzbzIkcmV0ZW50aW9uICAgDQogICAgICAgIGlkZW50aWZpY2F0aW9uX2xhc3NvMltpLCBqXSA9IHJlc19sYXNzbzIkbm9uemVybw0KICAgICAgICBwcmVkaWN0aW9uX2xhc3NvMltpLCBqXSA9IHJlc19sYXNzbzIkbXNlDQogICAgICAgIA0KICAgICAgICByZXNfUkYgPSBSRl9WU1VSRihkYXRhPWRmLCBiZXRhPWJldGEpDQogICAgICAgIHJldGVudGlvbl9SRltpLCBqXSA9IHJlc19SRiRyZXRlbnRpb24gICANCiAgICAgICAgaWRlbnRpZmljYXRpb25fUkZbaSwgal0gPSByZXNfUkYkbm9uemVybw0KICAgICAgICBwcmVkaWN0aW9uX1JGW2ksIGpdID0gcmVzX1JGJE9PQl9lcnJvcg0KICAgICAgICANCiAgICB9DQp9DQoNCg0KDQplbmRfdGltZSA8LSBTeXMudGltZSgpDQoNCmNhdCgiRHVyYXRpb24gZm9yIE51bWJlciBvZiBTaW1zID0gIiwgbl9zaW0sICJpczogIiwgZW5kX3RpbWUgLSBzdGFydF90aW1lKQ0KDQojLS0tLS0tLS0tLS0tLS0NCiMgUmV0ZW50aW9uIFBsb3QNCiMtLS0tLS0tLS0tLS0tLS0NCnRydWVfc3BhcnNpdHkgPSBzdW0oYmV0YSkjIFNVTSBhcyBzcGFyc2l0eSBtZWFzdXJlIG5vdCBjb3JyZWN0IGlmIHRydWUgYmV0YSBub3QgYmluYXJ5DQpwbG90KHNuci52ZWMsIHJldGVudGlvbl9mcmVxdWVuY3kocmV0ZW50aW9uX2xhc3NvLCB0cnVlX3NwYXJzaXR5KSwgbWFpbj0iUmV0ZW50aW9uIGZyZXF1ZW5jeSBsYXNzbyAtIGNvbnNlcnZhdGl2ZSIsIGNvbD0iYmx1ZSIsIHR5cGUgPSAiYiIpDQpsaW5lcyhzbnIudmVjLCByZXRlbnRpb25fZnJlcXVlbmN5KHJldGVudGlvbl9sYXNzbzIsIHRydWVfc3BhcnNpdHkpLCBtYWluPSJSZXRlbnRpb24gZnJlcXVlbmN5IGxhc3NvIC0gb3B0aW1hbCBwcmVkIiwgY29sPSJncmVlbiIsIHR5cGU9ImIiKQ0KbGluZXMoc25yLnZlYywgcmV0ZW50aW9uX2ZyZXF1ZW5jeShyZXRlbnRpb25fUkYsIHRydWVfc3BhcnNpdHkpLCBtYWluPSJSZXRlbnRpb24gZnJlcXVlbmN5IFZTVVJGIC0gcHJlZGljdGlvbiIsIGNvbD0icmVkIiwgdHlwZT0iYiIpDQoNCiMtLS0tLS0tLS0tLS0tLQ0KIyBOb256ZXJvIFBsb3QNCiMtLS0tLS0tLS0tLS0tLS0NCg0KcGxvdChzbnIudmVjLCBlcnJvcl9yYXRlKGlkZW50aWZpY2F0aW9uX2xhc3NvKSwgbWFpbj0iSWRlbnRpZmljYXRpb24gZnJlcXVlbmN5IGxhc3NvIC0gY29uc2VydmF0aXZlIiwgY29sPSJibHVlIiwgdHlwZT0iYiIpDQpwb2ludHMoc25yLnZlYywgZXJyb3JfcmF0ZShpZGVudGlmaWNhdGlvbl9sYXNzbzIpLCBtYWluPSJJZGVudGlmaWNhdGlvbiBmcmVxdWVuY3kgbGFzc28gLSBvcHRpbWFsIHByZWQiLCBjb2w9ImdyZWVuIiwgdHlwZT0iYiIpDQpwb2ludHMoc25yLnZlYywgZXJyb3JfcmF0ZShpZGVudGlmaWNhdGlvbl9SRiksIG1haW49IklkZW50aWZpY2F0aW9uIGZyZXF1ZW5jeSBWU1VSRiAtIHByZWRpY3Rpb24iLCBjb2wgPSAicmVkIiwgdHlwZT0iYiIpDQoNCiMtLS0tLS0tLS0tLS0tLQ0KIyBQcmVkaWN0aW9uIFBsb3QNCiMtLS0tLS0tLS0tLS0tLS0NCnBsb3Qoc25yLnZlYywgZXJyb3JfcmF0ZShwcmVkaWN0aW9uX2xhc3NvKSwgbWFpbj0iTVNFIGxhc3NvIC0gY29uc2VydmF0aXZlIiwgY29sPSJibHVlIiwgdHlwZT0iYiIpDQpwb2ludHMoc25yLnZlYywgZXJyb3JfcmF0ZShwcmVkaWN0aW9uX2xhc3NvMiksIG1haW49Ik1TRSBsYXNzbyAtIG9wdGltYWwgcHJlZCIsIGNvbD0iZ3JlZW4iLCB0eXBlPSJiIikNCnBvaW50cyhzbnIudmVjLCBlcnJvcl9yYXRlKHByZWRpY3Rpb25fUkYpLCBtYWluPSJNU0UgVlNVUkYgLSBwcmVkaWN0aW9uIiwgY29sPSJyZWQiLCB0eXBlPSJiIikNCg0KYGBgDQoNCg0KYGBge3J9DQojLS0tLS0tLS0tLS0tLS0NCiMgUmV0ZW50aW9uIFBsb3QNCiMtLS0tLS0tLS0tLS0tLS0NCnRydWVfc3BhcnNpdHkgPSBzdW0oYmV0YSkjIFNVTSBhcyBzcGFyc2l0eSBtZWFzdXJlIG5vdCBjb3JyZWN0IGlmIHRydWUgYmV0YSBub3QgYmluYXJ5DQpwbG90KHNuci52ZWMsIHJldGVudGlvbl9mcmVxdWVuY3kocmV0ZW50aW9uX2xhc3NvLCB0cnVlX3NwYXJzaXR5KSwgbWFpbj0iUmV0ZW50aW9uIGZyZXF1ZW5jeSBsYXNzbyAtIGNvbnNlcnZhdGl2ZSIsIGNvbD0iYmx1ZSIsIHR5cGUgPSAiYiIpDQpsaW5lcyhzbnIudmVjLCByZXRlbnRpb25fZnJlcXVlbmN5KHJldGVudGlvbl9sYXNzbzIsIHRydWVfc3BhcnNpdHkpLCBtYWluPSJSZXRlbnRpb24gZnJlcXVlbmN5IGxhc3NvIC0gb3B0aW1hbCBwcmVkIiwgY29sPSJncmVlbiIsIHR5cGU9ImIiKQ0KbGluZXMoc25yLnZlYywgcmV0ZW50aW9uX2ZyZXF1ZW5jeShyZXRlbnRpb25fUkYsIHRydWVfc3BhcnNpdHkpLCBtYWluPSJSZXRlbnRpb24gZnJlcXVlbmN5IFZTVVJGIC0gcHJlZGljdGlvbiIsIGNvbD0icmVkIiwgdHlwZT0iYiIpDQoNCiMtLS0tLS0tLS0tLS0tLQ0KIyBOb256ZXJvIFBsb3QNCiMtLS0tLS0tLS0tLS0tLS0NCg0KcGxvdChzbnIudmVjLCBlcnJvcl9yYXRlKGlkZW50aWZpY2F0aW9uX2xhc3NvKSwgbWFpbj0iSWRlbnRpZmljYXRpb24gZnJlcXVlbmN5IGxhc3NvIC0gY29uc2VydmF0aXZlIiwgY29sPSJibHVlIiwgdHlwZT0iYiIsIHlsaW09YygwLCAyMCkpDQpwb2ludHMoc25yLnZlYywgZXJyb3JfcmF0ZShpZGVudGlmaWNhdGlvbl9sYXNzbzIpLCBtYWluPSJJZGVudGlmaWNhdGlvbiBmcmVxdWVuY3kgbGFzc28gLSBvcHRpbWFsIHByZWQiLCBjb2w9ImdyZWVuIiwgdHlwZT0iYiIpDQpwb2ludHMoc25yLnZlYywgZXJyb3JfcmF0ZShpZGVudGlmaWNhdGlvbl9SRiksIG1haW49IklkZW50aWZpY2F0aW9uIGZyZXF1ZW5jeSBWU1VSRiAtIHByZWRpY3Rpb24iLCBjb2wgPSAicmVkIiwgdHlwZT0iYiIpDQoNCiMtLS0tLS0tLS0tLS0tLQ0KIyBQcmVkaWN0aW9uIFBsb3QNCiMtLS0tLS0tLS0tLS0tLS0NCnBsb3Qoc25yLnZlYywgZXJyb3JfcmF0ZShwcmVkaWN0aW9uX2xhc3NvKSwgbWFpbj0iTVNFIGxhc3NvIC0gY29uc2VydmF0aXZlIiwgY29sPSJibHVlIiwgdHlwZT0iYiIpDQpwb2ludHMoc25yLnZlYywgZXJyb3JfcmF0ZShwcmVkaWN0aW9uX2xhc3NvMiksIG1haW49Ik1TRSBsYXNzbyAtIG9wdGltYWwgcHJlZCIsIGNvbD0iZ3JlZW4iLCB0eXBlPSJiIikNCnBvaW50cyhzbnIudmVjLCBlcnJvcl9yYXRlKHByZWRpY3Rpb25fUkYpLCBtYWluPSJNU0UgVlNVUkYgLSBwcmVkaWN0aW9uIiwgY29sPSJyZWQiLCB0eXBlPSJiIikNCmBgYA0KDQoNCg0KDQoNCg0KYGBge3J9DQojLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0NCiMgU2ltdWxhdGlvbiAxIC0gbm8gUkYNCiMtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQ0KDQpzdGFydF90aW1lIDwtIFN5cy50aW1lKCkNCg0KIyBOdW1iZXIgb2Ygc2ltdWxhdGlvbnMNCm5fc2ltID0gMTANCiMgU2lnbmFsLXRvLW5vaXNlIHJhdGlvcyANCnNuci52ZWMgPSBleHAoc2VxKGxvZygwLjA1KSxsb2coNiksbGVuZ3RoPTEwKSkNCiNiZXRhIHZlY3Rvcg0KYmV0YSA9IGJldGFfMShwPTUwLHM9NSkNCiNjb250YWluZXJzIHRvIHN0b3JlIHJlc3VsdHMNCmNvbG5hbWVzID0gYygiSURfc2ltIiwgIlNOUiIsICJNZXRob2QiLCAiUmV0ZW50aW9uIiwgIk5vbnplcm8iLCAiUHJlZGljdGlvbiIpDQpyZXN1bHRzID0gZGF0YS5mcmFtZShtYXRyaXgoTmFOLCBuY29sPTYsIG5yb3c9KG5fc2ltKjMqbGVuZ3RoKHNuci52ZWMpKSkpDQpjb2xuYW1lcyhyZXN1bHRzKSA8LSBjb2xuYW1lcw0KDQpjb3VudGVyID0gMQ0KDQojU2ltdWxhdGlvbg0KZm9yIChqIGluIDE6bGVuZ3RoKHNuci52ZWMpKXsNCiAgICBTTlIgPSBzbnIudmVjW2pdDQogICAgZm9yIChpIGluIDE6bl9zaW0pew0KICAgICAgICAjU2ltdWxhdGUgdGhlIGRhdGENCiAgICAgICAgIy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQ0KICAgICAgICBkZiA8LSBzaW11bGF0ZShuPTEwMCwgcD01MCwgcmhvPTAuNSwgYmV0YT1iZXRhLCBTTlIgPSBTTlIpJGRmDQogICAgICAgIA0KICAgICAgICBJRCA8LSBqKjEwK2ktMTANCiAgICAgICAgDQogICAgICAgICNjYWxjdWxhdGUgQU5EIHN0b3JlIHRoZSByZXN1bHMNCiAgICAgICAgIy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQ0KICAgICAgICAjTGFzc28NCiAgICAgICAgcmVzX2xhc3NvID0gY3YubGFzc29fMihkYXRhPWRmLCBiZXRhPWJldGEpDQogICAgICAgIHJlc3VsdHNbY291bnRlcixdIDwtIGMoSUQsIFNOUiwgIkxhc3NvIiwgcmVzX2xhc3NvJHJldGVudGlvbiwgcmVzX2xhc3NvJG5vbnplcm8sIHJlc19sYXNzbyRtc2UpDQoNCiAgICAgICAgY291bnRlciA9IGNvdW50ZXIrMSAjaW5jcmVhc2UgY291bnRlciBieSAxDQogICAgICAgIA0KICAgICAgICAjUmVsYXhlZCBMYXNzbw0KICAgICAgICAjLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tDQogICAgICAgIHJlc19sYXNzbyA9IGN2LnJlbGF4ZWRfbGFzc28oZGF0YT1kZiwgYmV0YT1iZXRhKQ0KICAgICAgICByZXN1bHRzW2NvdW50ZXIsXSA8LSBjKElELCBTTlIsICJSZWxheGVkIExhc3NvIiwgcmVzX2xhc3NvJHJldGVudGlvbiwgcmVzX2xhc3NvJG5vbnplcm8sIHJlc19sYXNzbyRtc2UpDQogICAgICAgIA0KICAgICAgICBjb3VudGVyID0gY291bnRlcisxDQogICAgICAgIA0KICAgICAgICANCiAgICB9DQp9DQoNCg0KDQplbmRfdGltZSA8LSBTeXMudGltZSgpDQoNCmNhdCgiRHVyYXRpb24gZm9yIE51bWJlciBvZiBTaW1zID0gIiwgbl9zaW0sICJpczogIiwgZW5kX3RpbWUgLSBzdGFydF90aW1lKQ0KDQpyZXN1bHRzDQoNCmBgYA0KDQoNCmBgYA0KDQoNCmBgYHtyfQ0KIy0tLS0tLS0tLS0tLS0NCiMgQW5hbHlzaW5nIHdoeSBMYXNzbyBiZWhhdmVzIHdlaXJkbHkgZm9yIFNOUiA9IDYNCiMtLS0tLS0tLS0tLS0tDQoNCmJldGEgPSBiZXRhXzIocD0xNTAscz01KQ0KI3NldC5zZWVkKDQ1NikNCnNpbSA8LSBzaW11bGF0ZShuPTEwMCwgcD0xNTAsIHJobz0wLjksIGJldGE9YmV0YSwgU05SID0gNikNCmRmIDwtIHNpbSRkZg0KeCA8LSBkYXRhLm1hdHJpeChkZlssLTFdKSAjZXhwbGFuIHZhciwgZ2xtbmV0IGNhbid0IHVzZSBkYXRhZnJhbWUNCnkgPC0gZGF0YS5tYXRyaXgoZGZbLDFdKSAjZGVwZW5kZW50IHZhciwgZ2xtbmV0IGNhbid0IHVzZSBkYXRhZnJhbWUNCg0Kb3V0MT1jdi5nbG1uZXQoeCx5LGFscGhhPTEsIGludGVyY2VwID0gRkFMU0UpDQpwbG90KG91dDEpDQoNCm91dDI9IGN2LmdsbW5ldCh4LHksIHJlbGF4PVRSVUUsIGludGVyY2VwdD1GQUxTRSkjbHBoYT0xLCBpbnRlcmNlcHQ9IEZBTFNFLCByZWxheD1UUlVFKQ0KcGxvdChvdXQyLCBzZS5iYW5kcz1GQUxTRSkNCmxhc3NvX2NvZWYgPSBwcmVkaWN0KG91dDIsIHR5cGUgPSAiY29lZmZpY2llbnRzIiwgcyA9ICJsYW1iZGEubWluIiwgZ2FtbWEgPSAiZ2FtbWEubWluIikNCnZhcl9yZXRlbnRpb24obGFzc29fY29lZiwgYmV0YSkNCg0KbXNlIDwtIG91dDIkY3ZtW291dDIkbGFtYmRhID09IG91dDIkbGFtYmRhLjFzZV0NCg0KI2NvZWYob3V0LCBzPWxhbSkNCiNwbG90KG91dCwgeHZhcj0ibGFtYmRhIikNCiNjdi5vdXQgPSBjdi5nbG1uZXQoeCwgeSwgYWxwaGEgPSAxLCBpbnRlcmNlcHQ9RkFMU0UpICMgRml0IGxhc3NvIG1vZGVsIG9uIHRyYWluaW5nIGRhdGENCiNwbG90KGN2Lm91dCkgIyBEcmF3IHBsb3Qgb2YgdHJhaW5pbmcgTVNFIGFzIGEgZnVuY3Rpb24gb2YgbGFtYmRhDQojbGFtID0gY3Yub3V0JGxhbWJkYS4xc2UgIyBTZWxlY3QgbW9yZSBjb25zZXJ2YXRpdmUgbGFtYmRhIGZvciB2YXJpYWJsZSBzZWxlY3Rpb24NCiMNCiNjYXQoc2ltJHNpZ21hKQ0KI2xhc3NvX2NvZWYgPSBwcmVkaWN0KGN2Lm91dCwgdHlwZSA9ICJjb2VmZmljaWVudHMiLCBzID0gbGFtKSAjIERpc3BsYXkgY29lZmZpY2llbnRzIHVzaW5nIGxhbWJkYSBjaG9zZW4gYnkgQ1YNCmBgYA0KDQoNCg0KDQpgYGB7cn0NCmdldHdkKCkNCmBgYA0KDQo=